@baloise/ds-angular 0.0.5-nightly.e56f740
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +45 -0
- package/app-initialize.d.ts +3 -0
- package/bundles.d.ts +25 -0
- package/components/bal-checkbox-group.d.ts +20 -0
- package/components/bal-checkbox.d.ts +21 -0
- package/components/bal-date.d.ts +30 -0
- package/components/bal-datepicker.d.ts +26 -0
- package/components/bal-file-upload.d.ts +28 -0
- package/components/bal-input-date.d.ts +24 -0
- package/components/bal-input-slider.d.ts +24 -0
- package/components/bal-input-stepper.d.ts +27 -0
- package/components/bal-input.d.ts +24 -0
- package/components/bal-number-input.d.ts +25 -0
- package/components/bal-radio-group.d.ts +20 -0
- package/components/bal-select.d.ts +28 -0
- package/components/bal-textarea.d.ts +24 -0
- package/components/bal-time-input.d.ts +26 -0
- package/components/index.d.ts +14 -0
- package/directives/error.component.d.ts +8 -0
- package/directives/focus.directive.d.ts +6 -0
- package/esm2020/app-initialize.mjs +28 -0
- package/esm2020/baloise-ds-angular.mjs +5 -0
- package/esm2020/bundles.mjs +167 -0
- package/esm2020/components/bal-checkbox-group.mjs +55 -0
- package/esm2020/components/bal-checkbox.mjs +59 -0
- package/esm2020/components/bal-date.mjs +55 -0
- package/esm2020/components/bal-datepicker.mjs +55 -0
- package/esm2020/components/bal-file-upload.mjs +55 -0
- package/esm2020/components/bal-input-date.mjs +55 -0
- package/esm2020/components/bal-input-slider.mjs +55 -0
- package/esm2020/components/bal-input-stepper.mjs +60 -0
- package/esm2020/components/bal-input.mjs +55 -0
- package/esm2020/components/bal-number-input.mjs +60 -0
- package/esm2020/components/bal-radio-group.mjs +55 -0
- package/esm2020/components/bal-select.mjs +55 -0
- package/esm2020/components/bal-textarea.mjs +55 -0
- package/esm2020/components/bal-time-input.mjs +55 -0
- package/esm2020/components/index.mjs +15 -0
- package/esm2020/directives/error.component.mjs +23 -0
- package/esm2020/directives/focus.directive.mjs +15 -0
- package/esm2020/generated/angular-component-lib/utils.mjs +61 -0
- package/esm2020/generated/meta.mjs +45 -0
- package/esm2020/generated/proxies.mjs +2788 -0
- package/esm2020/generated/value-accessor.mjs +149 -0
- package/esm2020/index.mjs +8 -0
- package/esm2020/provide.mjs +68 -0
- package/fesm2015/baloise-ds-angular.mjs +3908 -0
- package/fesm2015/baloise-ds-angular.mjs.map +1 -0
- package/fesm2020/baloise-ds-angular.mjs +3905 -0
- package/fesm2020/baloise-ds-angular.mjs.map +1 -0
- package/generated/angular-component-lib/utils.d.ts +9 -0
- package/generated/meta.d.ts +42 -0
- package/generated/proxies.d.ts +1000 -0
- package/generated/value-accessor.d.ts +41 -0
- package/index.d.ts +8 -0
- package/package.json +44 -0
- package/provide.d.ts +3 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2020 Baloise Group
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<a href="https://design.baloise.dev" target="blank">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/baloise/design-system/main/resources/images/banner.svg?sanitize=true" alt="Baloise Design System" />
|
|
3
|
+
</a>
|
|
4
|
+
|
|
5
|
+
<br>
|
|
6
|
+
|
|
7
|
+
[](https://github.com/baloise/design-system/actions/workflows/continuous.yml)
|
|
8
|
+
|
|
9
|
+

|
|
10
|
+

|
|
11
|
+

|
|
12
|
+

|
|
13
|
+

|
|
14
|
+
[](https://webnamespaces.org)
|
|
15
|
+

|
|
16
|
+
|
|
17
|
+
## About
|
|
18
|
+
|
|
19
|
+
The Baloise Design System consists of reusable components and a clearly defined visual style, that can be assembled together to build any number of applications.
|
|
20
|
+
|
|
21
|
+
Check out the [documentation](https://design.baloise.dev)
|
|
22
|
+
|
|
23
|
+
## Packages
|
|
24
|
+
|
|
25
|
+
| Package | Status | Description |
|
|
26
|
+
| ------------------------------------------------ | ------------------------------------------------------------------------------ | ----------------------------------------------------------------------- |
|
|
27
|
+
| [Components](https://design.baloise.dev) |  | Core package build with web components and global styling. |
|
|
28
|
+
| [Components Angular](https://design.baloise.dev) |  | Angular component proxies based on the the core package. |
|
|
29
|
+
| [Components Vue](https://design.baloise.dev) |  | Vue component proxies based on the the core package. |
|
|
30
|
+
| [Components React](https://design.baloise.dev) |  | React component proxies based on the the core package. |
|
|
31
|
+
| [Components Table](https://design.baloise.dev) |  | Integration library for AG-Grid with styles and renderer functions |
|
|
32
|
+
| [CLI](https://design.baloise.dev) |  | CLI to scaffold an angular project or migration helpers. |
|
|
33
|
+
| [Tokens](https://design.baloise.dev) |  | Design Tokens like color and spacing. |
|
|
34
|
+
| [Styles](https://design.baloise.dev) |  | Basic CSS styles with utility classes. |
|
|
35
|
+
| [Icons](https://design.baloise.dev) |  | SVG icons of the design system. |
|
|
36
|
+
| [Favicons](https://design.baloise.dev) |  | Favicons of the design system. |
|
|
37
|
+
| [Maps](https://design.baloise.dev) |  | Google Maps styles and icons. |
|
|
38
|
+
| [Fonts](https://design.baloise.dev) |  | Web-Font of the design system. |
|
|
39
|
+
| [Testing](https://design.baloise.dev) |  | Testing package with custom and overridden commands for each component. |
|
|
40
|
+
|
|
41
|
+
CI PR
|
|
42
|
+
Release
|
|
43
|
+
Snapshot
|
|
44
|
+
Nightly
|
|
45
|
+
Visual Base
|
package/bundles.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { BalCheckbox, BalCheckboxGroup, BalDate, BalDatepicker, BalInput, BalInputDate, BalInputSlider, BalInputStepper, BalNumberInput, BalRadioGroup, BalSelect, BalTextarea, BalTimeInput } from './components';
|
|
2
|
+
import { BalNgErrorComponent } from './directives/error.component';
|
|
3
|
+
import { BalAccordion, BalAccordionDetails, BalAccordionSummary, BalAccordionTrigger, BalApp, BalButton, BalButtonGroup, BalCard, BalCardActions, BalCardButton, BalCardContent, BalCardSubtitle, BalCardTitle, BalCarousel, BalCarouselItem, BalCheckboxButton, BalContent, BalData, BalDataItem, BalDataLabel, BalDataValue, BalDivider, BalField, BalFieldControl, BalFieldHint, BalFieldLabel, BalFieldMessage, BalFooter, BalForm, BalFormCol, BalFormGrid, BalHeading, BalHint, BalHintText, BalHintTitle, BalInputGroup, BalLabel, BalList, BalListItem, BalListItemAccordionBody, BalListItemAccordionHead, BalListItemContent, BalListItemIcon, BalListItemSubtitle, BalListItemTitle, BalLogo, BalModal, BalModalBody, BalModalHeader, BalNavbar, BalNavbarBrand, BalNavbarMenu, BalNavbarMenuEnd, BalNavbarMenuStart, BalRadio, BalRadioButton, BalSelectOption, BalShape, BalStack, BalStage, BalStageBackLink, BalStageBody, BalStageFoot, BalStageHead, BalStageImage, BalStepItem, BalSteps, BalTabItem, BalTabs, BalTag, BalTagGroup, BalText } from './generated/proxies';
|
|
4
|
+
export declare const BalAccordionBundle: readonly [typeof BalAccordion, typeof BalAccordionDetails, typeof BalAccordionSummary, typeof BalAccordionTrigger];
|
|
5
|
+
export declare const BalButtonBundle: readonly [typeof BalButton, typeof BalButtonGroup];
|
|
6
|
+
export declare const BalCardBundle: readonly [typeof BalCard, typeof BalCardContent, typeof BalCardTitle, typeof BalCardActions, typeof BalCardSubtitle, typeof BalCardButton];
|
|
7
|
+
export declare const BalDataBundle: readonly [typeof BalData, typeof BalDataItem, typeof BalDataLabel, typeof BalDataValue];
|
|
8
|
+
export declare const BalHintBundle: readonly [typeof BalHint, typeof BalHintText, typeof BalHintTitle];
|
|
9
|
+
export declare const BalCarouselBundle: readonly [typeof BalCarousel, typeof BalCarouselItem];
|
|
10
|
+
export declare const BalListBundle: readonly [typeof BalList, typeof BalListItem, typeof BalListItemAccordionHead, typeof BalListItemAccordionBody, typeof BalListItemContent, typeof BalListItemIcon, typeof BalListItemTitle, typeof BalListItemSubtitle];
|
|
11
|
+
export declare const BalNavbarBundle: readonly [typeof BalNavbar, typeof BalNavbarBrand, typeof BalNavbarMenu, typeof BalNavbarMenuStart, typeof BalNavbarMenuEnd];
|
|
12
|
+
export declare const BalStageBundle: readonly [typeof BalStage, typeof BalStageBackLink, typeof BalStageBody, typeof BalStageFoot, typeof BalStageHead, typeof BalStageImage];
|
|
13
|
+
export declare const BalTagBundle: readonly [typeof BalTag, typeof BalTagGroup];
|
|
14
|
+
export declare const BalTabsBundle: readonly [typeof BalTabs, typeof BalTabItem];
|
|
15
|
+
export declare const BalStepsBundle: readonly [typeof BalSteps, typeof BalStepItem];
|
|
16
|
+
export declare const BalModalBundle: readonly [typeof BalModal, typeof BalModalBody, typeof BalModalHeader];
|
|
17
|
+
export declare const BalSelectBundle: readonly [typeof BalSelectOption, typeof BalSelect];
|
|
18
|
+
export declare const BalCheckboxBundle: readonly [typeof BalCheckbox, typeof BalCheckboxGroup, typeof BalCheckboxButton];
|
|
19
|
+
export declare const BalRadioBundle: readonly [typeof BalRadio, typeof BalRadioButton, typeof BalRadioGroup];
|
|
20
|
+
export declare const BalFormGridBundle: readonly [typeof BalFormGrid, typeof BalFormCol];
|
|
21
|
+
export declare const BalFieldBundle: readonly [typeof BalField, typeof BalFieldLabel, typeof BalFieldControl, typeof BalFieldMessage, typeof BalFieldControl, typeof BalFieldHint];
|
|
22
|
+
export declare const BalFormBundle: readonly [typeof BalForm, typeof BalInputGroup, typeof BalField, typeof BalFieldLabel, typeof BalFieldControl, typeof BalFieldMessage, typeof BalFieldControl, typeof BalFieldHint, typeof BalButton, typeof BalButtonGroup, typeof BalFormGrid, typeof BalFormCol, typeof BalNgErrorComponent, typeof BalCheckbox, typeof BalCheckboxGroup, typeof BalCheckboxButton, typeof BalDate, typeof BalDatepicker, typeof BalInputDate, typeof BalInputStepper, typeof BalInputSlider, typeof BalInput, typeof BalNumberInput, typeof BalRadio, typeof BalRadioButton, typeof BalRadioGroup, typeof BalSelectOption, typeof BalSelect, typeof BalTextarea, typeof BalTimeInput];
|
|
23
|
+
export declare const BalLayoutBundle: readonly [typeof BalStack, typeof BalContent, typeof BalLogo, typeof BalShape, typeof BalApp, typeof BalDivider, typeof BalFooter];
|
|
24
|
+
export declare const BalTypographyBundle: readonly [typeof BalHeading, typeof BalText, typeof BalLabel];
|
|
25
|
+
export declare const BalComponentBundle: readonly [typeof BalAccordion, typeof BalAccordionDetails, typeof BalAccordionSummary, typeof BalAccordionTrigger, typeof BalApp, typeof BalButton, typeof BalButtonGroup, typeof BalCard, typeof BalCardActions, typeof BalCardButton, typeof BalCardContent, typeof BalCardSubtitle, typeof BalCardTitle, typeof BalCarousel, typeof BalCarouselItem, typeof BalCheckboxButton, typeof BalContent, typeof BalData, typeof BalDataItem, typeof BalDataLabel, typeof BalDataValue, typeof BalDivider, typeof BalField, typeof BalFieldControl, typeof BalFieldHint, typeof BalFieldLabel, typeof BalFieldMessage, typeof BalFooter, typeof BalForm, typeof BalFormCol, typeof BalFormGrid, typeof BalHeading, typeof BalHint, typeof BalHintText, typeof BalHintTitle, typeof BalInputGroup, typeof BalLabel, typeof BalList, typeof BalListItem, typeof BalListItemAccordionBody, typeof BalListItemAccordionHead, typeof BalListItemContent, typeof BalListItemIcon, typeof BalListItemSubtitle, typeof BalListItemTitle, typeof BalLogo, typeof BalModal, typeof BalModalBody, typeof BalModalHeader, typeof BalNavbar, typeof BalNavbarBrand, typeof BalNavbarMenu, typeof BalNavbarMenuEnd, typeof BalNavbarMenuStart, typeof BalRadio, typeof BalRadioButton, typeof BalSelectOption, typeof BalShape, typeof BalStack, typeof BalStage, typeof BalStageBackLink, typeof BalStageBody, typeof BalStageFoot, typeof BalStageHead, typeof BalStageImage, typeof BalStepItem, typeof BalSteps, typeof BalTabItem, typeof BalTabs, typeof BalTag, typeof BalTagGroup, typeof BalText, typeof BalNgErrorComponent, typeof BalCheckbox, typeof BalCheckboxGroup, typeof BalDate, typeof BalDatepicker, typeof BalInput, typeof BalInputDate, typeof BalInputSlider, typeof BalInputStepper, typeof BalNumberInput, typeof BalRadioGroup, typeof BalSelect, typeof BalTextarea, typeof BalTimeInput];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalCheckboxGroup extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalChange(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalCheckboxGroup, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalCheckboxGroup, "bal-checkbox-group", never, { "autoInvalidOff": "autoInvalidOff"; "columns": "columns"; "columnsMobile": "columnsMobile"; "columnsTablet": "columnsTablet"; "control": "control"; "disabled": "disabled"; "expanded": "expanded"; "interface": "interface"; "invalid": "invalid"; "name": "name"; "options": "options"; "readonly": "readonly"; "value": "value"; "vertical": "vertical"; "verticalOnMobile": "verticalOnMobile"; }, { "balChange": "balChange"; "balFocus": "balFocus"; "balBlur": "balBlur"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalCheckboxGroup extends Components.BalCheckboxGroup {
|
|
14
|
+
/** Emitted when the toggle has focus. */
|
|
15
|
+
balFocus: EventEmitter<BalEvents.BalCheckboxCustomEvent<FocusEvent>>;
|
|
16
|
+
/** Emitted when the toggle loses focus. */
|
|
17
|
+
balBlur: EventEmitter<BalEvents.BalCheckboxCustomEvent<FocusEvent>>;
|
|
18
|
+
/** Emitted when the value property has changed. */
|
|
19
|
+
balChange: EventEmitter<BalEvents.BalCheckboxCustomEvent<boolean>>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalCheckbox extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalChange(event: CustomEvent<any>): void;
|
|
10
|
+
writeValue(value: any): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalCheckbox, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalCheckbox, "bal-checkbox", never, { "autoInvalidOff": "autoInvalidOff"; "checked": "checked"; "disabled": "disabled"; "flat": "flat"; "inline": "inline"; "interface": "interface"; "invalid": "invalid"; "invisible": "invisible"; "label": "label"; "labelHidden": "labelHidden"; "name": "name"; "nonSubmit": "nonSubmit"; "readonly": "readonly"; "required": "required"; "value": "value"; }, { "balFocus": "balFocus"; "balBlur": "balBlur"; "balChange": "balChange"; }, never, ["*"], true, never>;
|
|
13
|
+
}
|
|
14
|
+
export declare interface BalCheckbox extends Components.BalCheckbox {
|
|
15
|
+
/** Emitted when the toggle has focus. */
|
|
16
|
+
balFocus: EventEmitter<BalEvents.BalCheckboxCustomEvent<FocusEvent>>;
|
|
17
|
+
/** Emitted when the toggle loses focus. */
|
|
18
|
+
balBlur: EventEmitter<BalEvents.BalCheckboxCustomEvent<FocusEvent>>;
|
|
19
|
+
/** Emitted when the value property has changed. */
|
|
20
|
+
balChange: EventEmitter<BalEvents.BalCheckboxCustomEvent<boolean>>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalDate extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalChange(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalDate, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalDate, "bal-date", never, { "allowedDates": "allowedDates"; "autoInvalidOff": "autoInvalidOff"; "closeOnSelect": "closeOnSelect"; "debounce": "debounce"; "defaultDate": "defaultDate"; "disabled": "disabled"; "freeSolo": "freeSolo"; "invalid": "invalid"; "max": "max"; "maxYearProp": "maxYearProp"; "min": "min"; "minYearProp": "minYearProp"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "triggerIcon": "triggerIcon"; "value": "value"; }, { "balInput": "balInput"; "balChange": "balChange"; "balWillAnimate": "balWillAnimate"; "balDidAnimate": "balDidAnimate"; "balBlur": "balBlur"; "balFocus": "balFocus"; "balInputClick": "balInputClick"; "balIconClick": "balIconClick"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalDate extends Components.BalDate {
|
|
14
|
+
/** Emitted when a keyboard input occurred. */
|
|
15
|
+
balInput: EventEmitter<BalEvents.BalDateCustomEvent<string | undefined>>;
|
|
16
|
+
/** Emitted when a option got selected. */
|
|
17
|
+
balChange: EventEmitter<BalEvents.BalDateCustomEvent<string | undefined>>;
|
|
18
|
+
/** Emitted before the animation starts */
|
|
19
|
+
balWillAnimate: EventEmitter<BalEvents.BalDateCustomEvent<boolean>>;
|
|
20
|
+
/** Emitted after the animation has finished */
|
|
21
|
+
balDidAnimate: EventEmitter<BalEvents.BalDateCustomEvent<boolean>>;
|
|
22
|
+
/** Emitted when the input loses focus. */
|
|
23
|
+
balBlur: EventEmitter<BalEvents.BalDateCustomEvent<FocusEvent>>;
|
|
24
|
+
/** Emitted when the input has focus. */
|
|
25
|
+
balFocus: EventEmitter<BalEvents.BalDateCustomEvent<FocusEvent>>;
|
|
26
|
+
/** Emitted when the input has clicked. */
|
|
27
|
+
balInputClick: EventEmitter<BalEvents.BalDateCustomEvent<MouseEvent>>;
|
|
28
|
+
/** Emitted when the icon has clicked. */
|
|
29
|
+
balIconClick: EventEmitter<BalEvents.BalDateCustomEvent<MouseEvent>>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalDatepicker extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalChange(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalDatepicker, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalDatepicker, "bal-datepicker", never, { "allowedDates": "allowedDates"; "autoInvalidOff": "autoInvalidOff"; "closeOnSelect": "closeOnSelect"; "debounce": "debounce"; "defaultDate": "defaultDate"; "disabled": "disabled"; "invalid": "invalid"; "loading": "loading"; "max": "max"; "maxYearProp": "maxYearProp"; "min": "min"; "minYearProp": "minYearProp"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "triggerIcon": "triggerIcon"; "value": "value"; }, { "balChange": "balChange"; "balInput": "balInput"; "balBlur": "balBlur"; "balFocus": "balFocus"; "balInputClick": "balInputClick"; "balIconClick": "balIconClick"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalDatepicker extends Components.BalDatepicker {
|
|
14
|
+
/** Emitted when a option got selected. */
|
|
15
|
+
balChange: EventEmitter<BalEvents.BalDatepickerCustomEvent<string | undefined>>;
|
|
16
|
+
/** Emitted when a keyboard input occurred. */
|
|
17
|
+
balInput: EventEmitter<BalEvents.BalDatepickerCustomEvent<string | undefined>>;
|
|
18
|
+
/** Emitted when the input loses focus. */
|
|
19
|
+
balBlur: EventEmitter<BalEvents.BalDatepickerCustomEvent<FocusEvent>>;
|
|
20
|
+
/** Emitted when the input has focus. */
|
|
21
|
+
balFocus: EventEmitter<BalEvents.BalDatepickerCustomEvent<FocusEvent>>;
|
|
22
|
+
/** Emitted when the input has clicked. */
|
|
23
|
+
balInputClick: EventEmitter<BalEvents.BalDatepickerCustomEvent<MouseEvent>>;
|
|
24
|
+
/** Emitted when the icon has clicked. */
|
|
25
|
+
balIconClick: EventEmitter<BalEvents.BalDatepickerCustomEvent<MouseEvent>>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components, FileUploadRejectedFile } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalFileUpload extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalChange(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalFileUpload, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalFileUpload, "bal-file-upload", never, { "accept": "accept"; "autoInvalidOff": "autoInvalidOff"; "disabled": "disabled"; "hasFileList": "hasFileList"; "invalid": "invalid"; "label": "label"; "loading": "loading"; "maxBundleSize": "maxBundleSize"; "maxFileSize": "maxFileSize"; "maxFiles": "maxFiles"; "multiple": "multiple"; "name": "name"; "readonly": "readonly"; "required": "required"; "subTitle": "subTitle"; "value": "value"; }, { "balChange": "balChange"; "balFilesAdded": "balFilesAdded"; "balFilesRemoved": "balFilesRemoved"; "balRejectedFile": "balRejectedFile"; "balInputClick": "balInputClick"; "balBlur": "balBlur"; "balFocus": "balFocus"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalFileUpload extends Components.BalFileUpload {
|
|
14
|
+
/** Triggers when a file is added or removed. */
|
|
15
|
+
balChange: EventEmitter<BalEvents.BalFileUploadCustomEvent<File[]>>;
|
|
16
|
+
/** Triggers when a file is added. */
|
|
17
|
+
balFilesAdded: EventEmitter<BalEvents.BalFileUploadCustomEvent<File[]>>;
|
|
18
|
+
/** Triggers when a file is removed. */
|
|
19
|
+
balFilesRemoved: EventEmitter<BalEvents.BalFileUploadCustomEvent<File[]>>;
|
|
20
|
+
/** Triggers when a file is rejected due to not allowed MIME-Type and so on. */
|
|
21
|
+
balRejectedFile: EventEmitter<BalEvents.BalFileUploadCustomEvent<FileUploadRejectedFile>>;
|
|
22
|
+
/** Emitted when the input has clicked. */
|
|
23
|
+
balInputClick: EventEmitter<BalEvents.BalFileUploadCustomEvent<MouseEvent>>;
|
|
24
|
+
/** Emitted when the input loses focus. */
|
|
25
|
+
balBlur: EventEmitter<BalEvents.BalFileUploadCustomEvent<FocusEvent>>;
|
|
26
|
+
/** Emitted when the input has focus. */
|
|
27
|
+
balFocus: EventEmitter<BalEvents.BalFileUploadCustomEvent<FocusEvent>>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalInputDate extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalChange(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalInputDate, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalInputDate, "bal-input-date", never, { "autoInvalidOff": "autoInvalidOff"; "autocomplete": "autocomplete"; "clickable": "clickable"; "disabled": "disabled"; "invalid": "invalid"; "max": "max"; "min": "min"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "value": "value"; }, { "balKeyPress": "balKeyPress"; "balChange": "balChange"; "balInput": "balInput"; "balBlur": "balBlur"; "balFocus": "balFocus"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalInputDate extends Components.BalInputDate {
|
|
14
|
+
/** Emitted when a keyboard key has pressed. */
|
|
15
|
+
balKeyPress: EventEmitter<BalEvents.BalInputDateCustomEvent<KeyboardEvent>>;
|
|
16
|
+
/** Emitted when a option got selected. */
|
|
17
|
+
balChange: EventEmitter<BalEvents.BalInputDateCustomEvent<string | undefined>>;
|
|
18
|
+
/** Emitted when a keyboard input occurred. */
|
|
19
|
+
balInput: EventEmitter<BalEvents.BalInputDateCustomEvent<string | undefined>>;
|
|
20
|
+
/** Emitted when the input loses focus. */
|
|
21
|
+
balBlur: EventEmitter<BalEvents.BalInputDateCustomEvent<FocusEvent>>;
|
|
22
|
+
/** Emitted when the input has focus. */
|
|
23
|
+
balFocus: EventEmitter<BalEvents.BalInputDateCustomEvent<FocusEvent>>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalInputSlider extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalInput(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalInputSlider, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalInputSlider, "bal-input-slider", never, { "autoInvalidOff": "autoInvalidOff"; "balTabindex": "balTabindex"; "debounce": "debounce"; "disabled": "disabled"; "hasTicks": "hasTicks"; "invalid": "invalid"; "max": "max"; "min": "min"; "name": "name"; "readonly": "readonly"; "required": "required"; "step": "step"; "value": "value"; }, { "balInput": "balInput"; "balBlur": "balBlur"; "balKeyPress": "balKeyPress"; "balFocus": "balFocus"; "balChange": "balChange"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalInputSlider extends Components.BalInputSlider {
|
|
14
|
+
/** Emitted when a keyboard input occurred. */
|
|
15
|
+
balInput: EventEmitter<BalEvents.BalInputSliderCustomEvent<null | number | string>>;
|
|
16
|
+
/** Emitted when a keyboard input occurred. */
|
|
17
|
+
balBlur: EventEmitter<BalEvents.BalInputSliderCustomEvent<FocusEvent>>;
|
|
18
|
+
/** Emitted when a keyboard key has pressed. */
|
|
19
|
+
balKeyPress: EventEmitter<BalEvents.BalInputSliderCustomEvent<KeyboardEvent>>;
|
|
20
|
+
/** Emitted when the input has focus. */
|
|
21
|
+
balFocus: EventEmitter<BalEvents.BalInputSliderCustomEvent<FocusEvent>>;
|
|
22
|
+
/** Emitted when the input value has changed. */
|
|
23
|
+
balChange: EventEmitter<BalEvents.BalInputSliderCustomEvent<null | number | string>>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalInputStepper extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalInput(event: CustomEvent<any>): void;
|
|
10
|
+
registerOnChange(fn: (_: number | null) => void): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalInputStepper, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalInputStepper, "bal-input-stepper", never, { "autoInvalidOff": "autoInvalidOff"; "debounce": "debounce"; "disabled": "disabled"; "invalid": "invalid"; "max": "max"; "min": "min"; "name": "name"; "readonly": "readonly"; "steps": "steps"; "value": "value"; }, { "balChange": "balChange"; "balInput": "balInput"; "balIncrease": "balIncrease"; "balDecrease": "balDecrease"; "balFocus": "balFocus"; "balBlur": "balBlur"; }, never, ["*"], true, never>;
|
|
13
|
+
}
|
|
14
|
+
export declare interface BalInputStepper extends Components.BalInputStepper {
|
|
15
|
+
/** Emitted when the input value has changed. */
|
|
16
|
+
balChange: EventEmitter<BalEvents.BalInputStepperCustomEvent<number | undefined>>;
|
|
17
|
+
/** Emitted when the input value has changed. */
|
|
18
|
+
balInput: EventEmitter<BalEvents.BalInputStepperCustomEvent<number | undefined>>;
|
|
19
|
+
/** Emitted when the input value has increased. */
|
|
20
|
+
balIncrease: EventEmitter<BalEvents.BalInputStepperCustomEvent<number | undefined>>;
|
|
21
|
+
/** Emitted when the input value has decreased. */
|
|
22
|
+
balDecrease: EventEmitter<BalEvents.BalInputStepperCustomEvent<number | undefined>>;
|
|
23
|
+
/** Emitted when the input has focus. */
|
|
24
|
+
balFocus: EventEmitter<BalEvents.BalInputStepperCustomEvent<FocusEvent>>;
|
|
25
|
+
/** Emitted when a keyboard input occurred. */
|
|
26
|
+
balBlur: EventEmitter<BalEvents.BalInputStepperCustomEvent<FocusEvent>>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalInput extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalInput(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalInput, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalInput, "bal-input", never, { "accept": "accept"; "allowedKeyPress": "allowedKeyPress"; "autoInvalidOff": "autoInvalidOff"; "autocapitalize": "autocapitalize"; "autocomplete": "autocomplete"; "autocorrect": "autocorrect"; "autofocus": "autofocus"; "clickable": "clickable"; "debounce": "debounce"; "disabled": "disabled"; "inputmode": "inputmode"; "invalid": "invalid"; "mask": "mask"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "minLength": "minLength"; "multiple": "multiple"; "name": "name"; "pattern": "pattern"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "spellcheck": "spellcheck"; "suffix": "suffix"; "textAlign": "textAlign"; "type": "type"; "value": "value"; }, { "balInput": "balInput"; "balBlur": "balBlur"; "balKeyPress": "balKeyPress"; "balFocus": "balFocus"; "balChange": "balChange"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalInput extends Components.BalInput {
|
|
14
|
+
/** Emitted when a keyboard input occurred. */
|
|
15
|
+
balInput: EventEmitter<BalEvents.BalInputCustomEvent<string | undefined>>;
|
|
16
|
+
/** Emitted when a keyboard input occurred. */
|
|
17
|
+
balBlur: EventEmitter<BalEvents.BalInputCustomEvent<FocusEvent>>;
|
|
18
|
+
/** Emitted when a keyboard key has pressed. */
|
|
19
|
+
balKeyPress: EventEmitter<BalEvents.BalInputCustomEvent<KeyboardEvent>>;
|
|
20
|
+
/** Emitted when the input has focus. */
|
|
21
|
+
balFocus: EventEmitter<BalEvents.BalInputCustomEvent<FocusEvent>>;
|
|
22
|
+
/** Emitted when the input value has changed. */
|
|
23
|
+
balChange: EventEmitter<BalEvents.BalInputCustomEvent<string | undefined>>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalNumberInput extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalInput(event: CustomEvent<any>): void;
|
|
10
|
+
registerOnChange(fn: (_: number | null) => void): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalNumberInput, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalNumberInput, "bal-number-input", never, { "autoInvalidOff": "autoInvalidOff"; "debounce": "debounce"; "decimal": "decimal"; "disabled": "disabled"; "exactNumber": "exactNumber"; "invalid": "invalid"; "max": "max"; "min": "min"; "name": "name"; "pattern": "pattern"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "suffix": "suffix"; "value": "value"; }, { "balInput": "balInput"; "balChange": "balChange"; "balBlur": "balBlur"; "balFocus": "balFocus"; "balKeyPress": "balKeyPress"; }, never, ["*"], true, never>;
|
|
13
|
+
}
|
|
14
|
+
export declare interface BalNumberInput extends Components.BalNumberInput {
|
|
15
|
+
/** Emitted when a keyboard input occurred. */
|
|
16
|
+
balInput: EventEmitter<BalEvents.BalNumberInputCustomEvent<number | undefined>>;
|
|
17
|
+
/** Emitted when the value has changed. */
|
|
18
|
+
balChange: EventEmitter<BalEvents.BalNumberInputCustomEvent<number | undefined>>;
|
|
19
|
+
/** Emitted when the input loses focus. */
|
|
20
|
+
balBlur: EventEmitter<BalEvents.BalNumberInputCustomEvent<FocusEvent>>;
|
|
21
|
+
/** Emitted when the input has focus. */
|
|
22
|
+
balFocus: EventEmitter<BalEvents.BalNumberInputCustomEvent<FocusEvent>>;
|
|
23
|
+
/** Emitted when a keyboard key has pressed. */
|
|
24
|
+
balKeyPress: EventEmitter<BalEvents.BalNumberInputCustomEvent<KeyboardEvent>>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalRadioGroup extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalChange(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalRadioGroup, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalRadioGroup, "bal-radio-group", never, { "allowEmptySelection": "allowEmptySelection"; "autoInvalidOff": "autoInvalidOff"; "columnsMobile": "columnsMobile"; "columnsTablet": "columnsTablet"; "disabled": "disabled"; "expanded": "expanded"; "grid": "grid"; "interface": "interface"; "invalid": "invalid"; "name": "name"; "options": "options"; "readonly": "readonly"; "value": "value"; "vertical": "vertical"; "verticalOnMobile": "verticalOnMobile"; }, { "balChange": "balChange"; "balFocus": "balFocus"; "balBlur": "balBlur"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalRadioGroup extends Components.BalRadioGroup {
|
|
14
|
+
/** Emitted when the checked property has changed. */
|
|
15
|
+
balChange: EventEmitter<BalEvents.BalRadioGroupCustomEvent<boolean | number | string>>;
|
|
16
|
+
/** Emitted when the toggle has focus. */
|
|
17
|
+
balFocus: EventEmitter<BalEvents.BalRadioGroupCustomEvent<FocusEvent>>;
|
|
18
|
+
/** Emitted when the toggle loses focus. */
|
|
19
|
+
balBlur: EventEmitter<BalEvents.BalRadioGroupCustomEvent<FocusEvent>>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from '@baloise/ds-core';
|
|
3
|
+
import { ValueAccessor } from '../generated/value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BalSelect extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleBalChange(event: CustomEvent<any>): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BalSelect, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BalSelect, "bal-select", never, { "autoInvalidOff": "autoInvalidOff"; "autocomplete": "autocomplete"; "balTabindex": "balTabindex"; "disabled": "disabled"; "filter": "filter"; "freeSolo": "freeSolo"; "invalid": "invalid"; "loading": "loading"; "maxLength": "maxLength"; "multiple": "multiple"; "name": "name"; "noDataLabel": "noDataLabel"; "placeholder": "placeholder"; "readonly": "readonly"; "remote": "remote"; "required": "required"; "scrollable": "scrollable"; "selectionOptional": "selectionOptional"; "typeahead": "typeahead"; "value": "value"; }, { "balChange": "balChange"; "balInputClick": "balInputClick"; "balInput": "balInput"; "balBlur": "balBlur"; "balFocus": "balFocus"; "balCancel": "balCancel"; "balKeyPress": "balKeyPress"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface BalSelect extends Components.BalSelect {
|
|
14
|
+
/** Emitted when a option got selected. */
|
|
15
|
+
balChange: EventEmitter<BalEvents.BalSelectCustomEvent<string | string[] | undefined>>;
|
|
16
|
+
/** Emitted when the input got clicked. */
|
|
17
|
+
balInputClick: EventEmitter<BalEvents.BalSelectCustomEvent<MouseEvent>>;
|
|
18
|
+
/** Emitted when a keyboard input occurred. */
|
|
19
|
+
balInput: EventEmitter<BalEvents.BalSelectCustomEvent<string>>;
|
|
20
|
+
/** Emitted when the input loses focus. */
|
|
21
|
+
balBlur: EventEmitter<BalEvents.BalSelectCustomEvent<FocusEvent>>;
|
|
22
|
+
/** Emitted when the input has focus. */
|
|
23
|
+
balFocus: EventEmitter<BalEvents.BalSelectCustomEvent<FocusEvent>>;
|
|
24
|
+
/** Emitted when the user cancels the input. */
|
|
25
|
+
balCancel: EventEmitter<BalEvents.BalSelectCustomEvent<KeyboardEvent>>;
|
|
26
|
+
/** Emitted when the input has focus and key from the keyboard go hit. */
|
|
27
|
+
balKeyPress: EventEmitter<BalEvents.BalSelectCustomEvent<KeyboardEvent>>;
|
|
28
|
+
}
|