@kms-ngx-ui/presentational 20.5.0 → 20.8.1
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/fesm2022/kms-ngx-ui-presentational.mjs +112 -77
- package/fesm2022/kms-ngx-ui-presentational.mjs.map +1 -1
- package/index.d.ts +40 -16
- package/package.json +1 -1
- package/src/assets/icons.json +1 -1
- package/src/assets/llms.txt +18 -17
- package/src/assets/sprite.svg +1 -1
- package/src/lib/ui/molecules/button-toggle-group/button-toggle-group.component.scss +51 -0
- package/src/styles/styles.scss +2 -0
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnInit, EventEmitter, DoCheck, Renderer2, ElementRef, ApplicationRef, ChangeDetectorRef, NgZone, OnChanges, AfterViewInit, WritableSignal, Signal, SimpleChanges, TemplateRef, OnDestroy, PipeTransform, AfterContentChecked, InputSignal, AfterContentInit, QueryList, Type } from '@angular/core';
|
|
2
|
+
import { OnInit, EventEmitter, DoCheck, Renderer2, ElementRef, ApplicationRef, ChangeDetectorRef, NgZone, OnChanges, AfterViewInit, WritableSignal, Signal, SimpleChanges, TemplateRef, OnDestroy, PipeTransform, AfterContentChecked, InputSignal, AfterContentInit, QueryList, InjectionToken, Type } from '@angular/core';
|
|
3
3
|
import * as i52 from '@ngx-translate/core';
|
|
4
4
|
import { TranslateService } from '@ngx-translate/core';
|
|
5
5
|
import * as i40 from '@angular/forms';
|
|
@@ -99,7 +99,9 @@ declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
99
99
|
infoText: string;
|
|
100
100
|
set checked(value: boolean);
|
|
101
101
|
get checked(): boolean;
|
|
102
|
-
disabled: boolean;
|
|
102
|
+
set disabled(value: boolean);
|
|
103
|
+
get disabled(): boolean;
|
|
104
|
+
private _disabled;
|
|
103
105
|
/**
|
|
104
106
|
* Internal description name. All checkboxes with the same name belong to the same group.
|
|
105
107
|
* User can select none, one or all checkboxes with the same name.
|
|
@@ -806,17 +808,6 @@ declare enum SalutationEnum {
|
|
|
806
808
|
FEMALE = "Frau"
|
|
807
809
|
}
|
|
808
810
|
|
|
809
|
-
declare class SalutationDropdownComponent extends FormControlParentComponent implements OnInit, ControlValueAccessor {
|
|
810
|
-
renderer: Renderer2;
|
|
811
|
-
placeholder: NullAble<string>;
|
|
812
|
-
SalutationEnum: typeof SalutationEnum;
|
|
813
|
-
Object: ObjectConstructor;
|
|
814
|
-
constructor(renderer: Renderer2);
|
|
815
|
-
ngOnInit(): void;
|
|
816
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SalutationDropdownComponent, never>;
|
|
817
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SalutationDropdownComponent, "kms-salutation-dropdown", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, false, never>;
|
|
818
|
-
}
|
|
819
|
-
|
|
820
811
|
declare class SalutationRadiogroupComponent extends FormControlParentComponent implements OnInit, ControlValueAccessor {
|
|
821
812
|
renderer: Renderer2;
|
|
822
813
|
SalutationEnum: typeof SalutationEnum;
|
|
@@ -1001,6 +992,29 @@ declare class ButtonComponent {
|
|
|
1001
992
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "kms-button", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
1002
993
|
}
|
|
1003
994
|
|
|
995
|
+
interface ButtonToggleOption {
|
|
996
|
+
Text: string;
|
|
997
|
+
Value: any;
|
|
998
|
+
Icon?: string;
|
|
999
|
+
Disabled?: boolean;
|
|
1000
|
+
}
|
|
1001
|
+
declare class ButtonToggleGroupComponent implements ControlValueAccessor {
|
|
1002
|
+
options: ButtonToggleOption[];
|
|
1003
|
+
disabled: boolean;
|
|
1004
|
+
rounded: boolean;
|
|
1005
|
+
value: any;
|
|
1006
|
+
readonly ButtonAppearance: typeof ButtonAppearance;
|
|
1007
|
+
readonly StylingTheme: typeof StylingTheme;
|
|
1008
|
+
onChange: (value: any) => void;
|
|
1009
|
+
onTouched: () => void;
|
|
1010
|
+
writeValue(value: any): void;
|
|
1011
|
+
registerOnChange(fn: any): void;
|
|
1012
|
+
registerOnTouched(fn: any): void;
|
|
1013
|
+
select(option: ButtonToggleOption): void;
|
|
1014
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonToggleGroupComponent, never>;
|
|
1015
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonToggleGroupComponent, "kms-button-toggle-group", never, { "options": { "alias": "options"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1004
1018
|
declare class NumericInputComponent implements ControlValueAccessor {
|
|
1005
1019
|
disabled: _angular_core.ModelSignal<boolean>;
|
|
1006
1020
|
min: _angular_core.InputSignal<number>;
|
|
@@ -1586,6 +1600,7 @@ declare class DirectivesModule {
|
|
|
1586
1600
|
|
|
1587
1601
|
declare class IconComponent {
|
|
1588
1602
|
sanitizer: DomSanitizer;
|
|
1603
|
+
spriteUrl: string;
|
|
1589
1604
|
/**
|
|
1590
1605
|
* Required: Name of the SVG icon inside your sprite sheet file with name 'icons.svg'.
|
|
1591
1606
|
* Pass 'none' if no icon should be rendered.
|
|
@@ -1702,7 +1717,7 @@ declare class TabGroupComponent implements AfterContentInit {
|
|
|
1702
1717
|
declare class KmsUiPresentationalModule {
|
|
1703
1718
|
constructor(translate: TranslateService);
|
|
1704
1719
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KmsUiPresentationalModule, never>;
|
|
1705
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<KmsUiPresentationalModule, [typeof BackToTopComponent, typeof CheckboxComponent, typeof ColorInputComponent, typeof DropdownFromDataComponent, typeof EnumRadiogroupComponent, typeof FileInputComponent, typeof ImageUploadComponent, typeof FlyoutComponent, typeof ConfirmationDialogComponent, typeof ImageSliderComponent, typeof KMSAccordionItemComponent, typeof KmsUiPresentationalComponent, typeof LoaderComponent, typeof MapComponent, typeof RadioButtonComponent, typeof RadioGroupComponent, typeof
|
|
1720
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<KmsUiPresentationalModule, [typeof BackToTopComponent, typeof CheckboxComponent, typeof ColorInputComponent, typeof DropdownFromDataComponent, typeof EnumRadiogroupComponent, typeof FileInputComponent, typeof ImageUploadComponent, typeof FlyoutComponent, typeof ConfirmationDialogComponent, typeof ImageSliderComponent, typeof KMSAccordionItemComponent, typeof KmsUiPresentationalComponent, typeof LoaderComponent, typeof MapComponent, typeof RadioButtonComponent, typeof RadioGroupComponent, typeof SalutationRadiogroupComponent, typeof SlideToggleComponent, typeof TimeInputComponent, typeof TooltipIconComponent, typeof YesNoRadiogroupComponent, typeof PasswordComponent, typeof SliderComponent, typeof CardComponent, typeof ButtonComponent, typeof ButtonToggleGroupComponent, typeof NumericInputComponent, typeof GenericFormComponent, typeof FormSectionComponent, typeof FormFieldComponent, typeof FormActionsComponent, typeof DynamicFieldDirective, typeof TextInputComponent], [typeof i8.CommonModule, typeof i35.DragDropModule, typeof i36.MatCheckboxModule, typeof i37.MatButtonModule, typeof i38.MatRadioModule, typeof i39.MatDialogModule, typeof i40.FormsModule, typeof i40.ReactiveFormsModule, typeof i41.MatFormFieldModule, typeof i42.MatInputModule, typeof i43.MatMenuModule, typeof CustomPipesModule, typeof i45.GoogleMapsModule, typeof i46.MatExpansionModule, typeof i47.MatSelectModule, typeof i48.NgxMatSelectSearchModule, typeof i49.MatProgressSpinnerModule, typeof DirectivesModule, typeof i51.MatSlideToggleModule, typeof i52.TranslateModule, typeof i53.MatTooltipModule, typeof i54.NgxSliderModule, typeof i55.MatAutocompleteModule, typeof i56.MatListModule, typeof i57.MatCardModule, typeof i58.MatDatepickerModule, typeof i59.MatNativeDateModule, typeof IconComponent, typeof InlineAlertComponent, typeof DateInputComponent, typeof TabGroupComponent, typeof KmsTabContentDirective], [typeof BackToTopComponent, typeof CheckboxComponent, typeof ColorInputComponent, typeof DropdownFromDataComponent, typeof EnumRadiogroupComponent, typeof RadioGroupComponent, typeof FileInputComponent, typeof ImageUploadComponent, typeof FlyoutComponent, typeof ConfirmationDialogComponent, typeof IconComponent, typeof ImageSliderComponent, typeof InlineAlertComponent, typeof KMSAccordionItemComponent, typeof KmsUiPresentationalComponent, typeof LoaderComponent, typeof MapComponent, typeof RadioButtonComponent, typeof SalutationRadiogroupComponent, typeof SlideToggleComponent, typeof TimeInputComponent, typeof TooltipIconComponent, typeof YesNoRadiogroupComponent, typeof PasswordComponent, typeof SliderComponent, typeof CardComponent, typeof ButtonComponent, typeof ButtonToggleGroupComponent, typeof NumericInputComponent, typeof GenericFormComponent, typeof FormSectionComponent, typeof FormActionsComponent, typeof DynamicFieldDirective, typeof DateInputComponent, typeof TextInputComponent, typeof TabGroupComponent, typeof KmsTabContentDirective]>;
|
|
1706
1721
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<KmsUiPresentationalModule>;
|
|
1707
1722
|
}
|
|
1708
1723
|
|
|
@@ -1867,6 +1882,15 @@ declare enum ButtonResponseType {
|
|
|
1867
1882
|
secondary = "secondary"
|
|
1868
1883
|
}
|
|
1869
1884
|
|
|
1885
|
+
/**
|
|
1886
|
+
* Base URL used by `kms-icon` to resolve the SVG sprite sheet referenced
|
|
1887
|
+
* by `<use xlink:href>`. Override this when the consuming app is loaded
|
|
1888
|
+
* from a different origin than the host page (e.g. an Angular Element
|
|
1889
|
+
* widget embedded in a third-party site), so the browser resolves the
|
|
1890
|
+
* sprite against the bundle's location instead of the host page.
|
|
1891
|
+
*/
|
|
1892
|
+
declare const KMS_SPRITE_URL: InjectionToken<string>;
|
|
1893
|
+
|
|
1870
1894
|
declare function noWhitespaceOnly(): ValidatorFn;
|
|
1871
1895
|
declare function noSpecialCharsOnly(): ValidatorFn;
|
|
1872
1896
|
|
|
@@ -1938,5 +1962,5 @@ declare class FieldRegistryService {
|
|
|
1938
1962
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FieldRegistryService>;
|
|
1939
1963
|
}
|
|
1940
1964
|
|
|
1941
|
-
export { BackToTopComponent, Breakpoint, ButtonAppearance, ButtonComponent, ButtonResponseType, CardComponent, CheckboxComponent, Color, ColorInputComponent, ConfirmationDialogComponent, CustomPipesModule, DateInputComponent, DirectivesModule, DropdownFromDataComponent, DynamicFieldDirective, EnumRadiogroupComponent, FieldRegistryService, FieldType, FileInputComponent, FlyoutComponent, FormActionsComponent, FormFieldComponent, FormLayout, FormParentComponent, FormSectionComponent, GenericFormComponent, GenericFormModule, GenericFormService, GetMaxHeightDirective, IconComponent, IconSizePx, IconSizesArr, ImageSliderComponent, ImageSnippet$1 as ImageSnippet, ImageSourceType$1 as ImageSourceType, ImageUploadComponent, InlineAlertComponent, IntegerCurrency, KMSAccordionItemComponent, KeyValuePair, KmsTabContentDirective, KmsUiPresentationalComponent, KmsUiPresentationalModule, KmsUiPresentationalService, LabelValuePair, LoaderComponent, MapComponent, Marker, MarkerLabel, MarkerOptions, NumericInputComponent, PasswordComponent, RadioButtonComponent, RadioButtonSize, RadioGroupComponent, SafeHtmlPipe, SafeResourceUrlPipe, SafeUrlPipe,
|
|
1942
|
-
export type { AsyncValidatorConfig, AutocompleteFieldOptions, CounterFieldOptions, DateFieldOptions, DateRangeFieldOptions, DateRangeValue, DialogConfig, DialogData, DisabledConfig, ErrorDisplayConfig, ErrorDisplayStrategy, FieldAffixConfig, FieldConfig, FieldTypeOptions, FormActionsConfig, FormSectionConfig, GenericFormConfig, GenericFormState, GridAlign, GridVerticalAlign, ImagePosition, ImageUploadFieldOptions, InlineAlertType, KmsTab, NullAble, NumberFieldOptions, PasswordFieldOptions, RadioGroupFieldOptions, RadiobuttonInterface, SelectFieldOptions, SelectTranslation, TextareaFieldOptions, TimeFieldOptions, ValidatorConfig };
|
|
1965
|
+
export { BackToTopComponent, Breakpoint, ButtonAppearance, ButtonComponent, ButtonResponseType, ButtonToggleGroupComponent, CardComponent, CheckboxComponent, Color, ColorInputComponent, ConfirmationDialogComponent, CustomPipesModule, DateInputComponent, DirectivesModule, DropdownFromDataComponent, DynamicFieldDirective, EnumRadiogroupComponent, FieldRegistryService, FieldType, FileInputComponent, FlyoutComponent, FormActionsComponent, FormFieldComponent, FormLayout, FormParentComponent, FormSectionComponent, GenericFormComponent, GenericFormModule, GenericFormService, GetMaxHeightDirective, IconComponent, IconSizePx, IconSizesArr, ImageSliderComponent, ImageSnippet$1 as ImageSnippet, ImageSourceType$1 as ImageSourceType, ImageUploadComponent, InlineAlertComponent, IntegerCurrency, KMSAccordionItemComponent, KMS_SPRITE_URL, KeyValuePair, KmsTabContentDirective, KmsUiPresentationalComponent, KmsUiPresentationalModule, KmsUiPresentationalService, LabelValuePair, LoaderComponent, MapComponent, Marker, MarkerLabel, MarkerOptions, NumericInputComponent, PasswordComponent, RadioButtonComponent, RadioButtonSize, RadioGroupComponent, SafeHtmlPipe, SafeResourceUrlPipe, SafeUrlPipe, SalutationEnum, SalutationRadiogroupComponent, SanitizeNullPipe, SimpleBreakpoint, SlideToggleComponent, SliderComponent, StylingTheme, SwipeDirective, TabGroupComponent, TextInputComponent, TextValuePair, TextValuePairArray, TimeDirective, TimeInputComponent, TooltipDirective, TooltipIconComponent, TrimPipe, TypeofPipe, ViewportService, WindowDimensions, YesNoRadiogroupComponent, noSpecialCharsOnly, noWhitespaceOnly };
|
|
1966
|
+
export type { AsyncValidatorConfig, AutocompleteFieldOptions, ButtonToggleOption, CounterFieldOptions, DateFieldOptions, DateRangeFieldOptions, DateRangeValue, DialogConfig, DialogData, DisabledConfig, ErrorDisplayConfig, ErrorDisplayStrategy, FieldAffixConfig, FieldConfig, FieldTypeOptions, FormActionsConfig, FormSectionConfig, GenericFormConfig, GenericFormState, GridAlign, GridVerticalAlign, ImagePosition, ImageUploadFieldOptions, InlineAlertType, KmsTab, NullAble, NumberFieldOptions, PasswordFieldOptions, RadioGroupFieldOptions, RadiobuttonInterface, SelectFieldOptions, SelectTranslation, TextareaFieldOptions, TimeFieldOptions, ValidatorConfig };
|
package/package.json
CHANGED
package/src/assets/icons.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
["alert-outline","arrow-down","arrow-left","arrow-right-left","arrow-right","arrow-top","arrow-up-down","arrows-left","blocked","calendar","camera","cardealer","checkbox_active","checkbox_inactive","checkbox_inner","checkmark-circle","checkmark-filled","chevron-down","chevron-left","chevron-right","chevron-top","circle","clock","close-circle","close","cog","collapse-right","create","credit","diamond","distance_range","download","drag1","edit-circle","efficiency","electro-cable","ellipse","end","exclamation","export-all","facebook","file-download","file-upload","filter-outline","filter","floating_button","floating_button_clear","fullscreen","hearth-thick","ic-invoice","ic-policy","ic_GEZ","ic_Voucher","ic_abbrechen-filled","ic_abbrechen","ic_ai","ic_back","ic_bereifung","ic_bezeichnung","ic_booking","ic_cancel_form","ic_car","ic_check","ic_check_form","ic_checkin-checkout","ic_co2","ic_credit-card","ic_edit","ic_energie","ic_equipment","ic_extras","ic_eye","ic_eye_active","ic_filter","ic_form_error","ic_form_finished","ic_gkm","ic_heart","ic_heart_filled","ic_historie","ic_history","ic_home","ic_home_new","ic_inclusivekm","ic_info","ic_kraftstoff","ic_language","ic_large-arrow","ic_last","ic_laufleistung","ic_left","ic_lkm","ic_lock","ic_menu","ic_minus","ic_new-car","ic_next","ic_pickup","ic_pin","ic_plus-circle","ic_plus","ic_radiobutton_active","ic_radiobutton_inactive","ic_redirect","ic_return","ic_schaltung","ic_settings","ic_shops","ic_side_front","ic_side_front_left","ic_side_front_left_tire","ic_side_front_right","ic_side_front_right_tire","ic_side_front_zoomed","ic_side_rear","ic_side_rear_left","ic_side_rear_left_tire","ic_side_rear_right","ic_side_rear_right_tire","ic_slider","ic_spezification","ic_steuer_versicherung","ic_tool","ic_tooltip_drag","ic_used-car","ic_vertrag","ic_wartung_verschleiss","ic_zulassung","image","instagram","insurance","kms-logo-white","kms-logo","large-arrow","linkedin","mail","map","mileage","move-list-left","move-list-right","palette","pdf","polestar","position","price-tag","print","profile-filled","profile","profile2","question-circle","question-filled","question","rent","search","security","special_entry","star-outline","star","start","submenu-dots","subscription","support","trash","tumblr","twitter","tyre","upload","user-circle","users","water","whatsapp","width","xing","youtube","zahlung_active","zahlungsanforderung"]
|
|
1
|
+
["alert-outline","arrow-down","arrow-left","arrow-right-left","arrow-right","arrow-top","arrow-up-down","arrows-left","blocked","calendar","camera","cardealer","checkbox_active","checkbox_inactive","checkbox_inner","checkmark-circle","checkmark-filled","chevron-down","chevron-left","chevron-right","chevron-top","circle","clock","close-circle","close","cog","collapse-right","create","credit","diamond","distance_range","download","drag1","edit-circle","efficiency","electro-cable","ellipse","end","exclamation","export-all","facebook","file-download","file-upload","filter-outline","filter","floating_button","floating_button_clear","fullscreen","hearth-thick","ic-invoice","ic-policy","ic_GEZ","ic_Voucher","ic_abbrechen-filled","ic_abbrechen","ic_ai","ic_back","ic_bereifung","ic_bezeichnung","ic_booking","ic_cancel_form","ic_car","ic_check","ic_check_form","ic_checkin-checkout","ic_co2","ic_credit-card","ic_edit","ic_energie","ic_equipment","ic_extras","ic_eye","ic_eye_active","ic_filter","ic_form_error","ic_form_finished","ic_gkm","ic_heart","ic_heart_filled","ic_historie","ic_history","ic_home","ic_home_new","ic_inclusivekm","ic_info","ic_kraftstoff","ic_language","ic_large-arrow","ic_last","ic_laufleistung","ic_left","ic_lkm","ic_lock","ic_menu","ic_minus","ic_new-car","ic_next","ic_pickup","ic_pin","ic_plus-circle","ic_plus","ic_radiobutton_active","ic_radiobutton_inactive","ic_redirect","ic_return","ic_schaltung","ic_settings","ic_shops","ic_side_front","ic_side_front_left","ic_side_front_left_tire","ic_side_front_right","ic_side_front_right_tire","ic_side_front_zoomed","ic_side_rear","ic_side_rear_left","ic_side_rear_left_tire","ic_side_rear_right","ic_side_rear_right_tire","ic_slider","ic_spezification","ic_steuer_versicherung","ic_tool","ic_tooltip_drag","ic_used-car","ic_vertrag","ic_wartung_verschleiss","ic_zulassung","image","instagram","insurance","kms-logo-white","kms-logo","large-arrow","link","linkedin","mail","map","mileage","move-list-left","move-list-right","palette","pdf","polestar","position","price-tag","print","profile-filled","profile","profile2","question-circle","question-filled","question","rent","search","security","special_entry","star-outline","star","start","submenu-dots","subscription","support","trash","tumblr","twitter","tyre","upload","user-circle","users","water","whatsapp","width","xing","youtube","zahlung_active","zahlungsanforderung"]
|
package/src/assets/llms.txt
CHANGED
|
@@ -29,7 +29,7 @@ import { ComponentName } from '@kms-ngx-ui/presentational';
|
|
|
29
29
|
| Name | Type | Default | Description |
|
|
30
30
|
|------|------|---------|-------------|
|
|
31
31
|
| `checked` | `boolean` | `-` | |
|
|
32
|
-
| `disabled` | `boolean` |
|
|
32
|
+
| `disabled` | `boolean` | `-` | |
|
|
33
33
|
| `infoText` | `string` | `''` | |
|
|
34
34
|
| `name` | `string` | `''` | Internal description name. All checkboxes with the same name belong to the same group. User can select none, one or all checkboxes with the same name. |
|
|
35
35
|
|
|
@@ -171,6 +171,16 @@ Component to show marker on google map for specific address
|
|
|
171
171
|
|------|------|
|
|
172
172
|
| `buttonClick` | `Event` |
|
|
173
173
|
|
|
174
|
+
### `<kms-button-toggle-group>` — ButtonToggleGroupComponent
|
|
175
|
+
|
|
176
|
+
**Inputs:**
|
|
177
|
+
| Name | Type | Default | Description |
|
|
178
|
+
|------|------|---------|-------------|
|
|
179
|
+
| `disabled` | `boolean` | `false` | |
|
|
180
|
+
| `options` | `ButtonToggleOption[]` | `[]` | |
|
|
181
|
+
| `rounded` | `boolean` | `false` | |
|
|
182
|
+
| `value` | `any` | `null` | |
|
|
183
|
+
|
|
174
184
|
### `<kms-color-input>` — ColorInputComponent
|
|
175
185
|
|
|
176
186
|
**Inputs:**
|
|
@@ -360,21 +370,6 @@ A generic dialog component
|
|
|
360
370
|
| `size` | `RadioButtonSize` | `RadioButtonSize.MD` | |
|
|
361
371
|
| `value` | `any` | `null` | |
|
|
362
372
|
|
|
363
|
-
### `<kms-salutation-dropdown>` — SalutationDropdownComponent
|
|
364
|
-
|
|
365
|
-
**Inputs:**
|
|
366
|
-
| Name | Type | Default | Description |
|
|
367
|
-
|------|------|---------|-------------|
|
|
368
|
-
| `placeholder` | `NullAble<string>` | `-` | |
|
|
369
|
-
| `defaultDataOverride` | `string` | `''` | |
|
|
370
|
-
| `disabled` | `boolean` | `false` | |
|
|
371
|
-
|
|
372
|
-
**Outputs:**
|
|
373
|
-
| Name | Type |
|
|
374
|
-
|------|------|
|
|
375
|
-
| `onSelectItemEmitter` | `EventEmitter` |
|
|
376
|
-
| `formDataChanged` | `EventEmitter<UntypedFormGroup>` |
|
|
377
|
-
|
|
378
373
|
### `<kms-salutation-radiogroup>` — SalutationRadiogroupComponent
|
|
379
374
|
|
|
380
375
|
**Inputs:**
|
|
@@ -698,6 +693,12 @@ Usage: `value | kmsTypeOf`
|
|
|
698
693
|
- `minChars`: `number` (optional)
|
|
699
694
|
- `selectFirst`: `boolean` (optional)
|
|
700
695
|
|
|
696
|
+
### ButtonToggleOption
|
|
697
|
+
- `Disabled`: `boolean` (optional)
|
|
698
|
+
- `Icon`: `string` (optional)
|
|
699
|
+
- `Text`: `string`
|
|
700
|
+
- `Value`: `any`
|
|
701
|
+
|
|
701
702
|
### ColorGroup
|
|
702
703
|
- `colors`: `literal type[]`
|
|
703
704
|
- `name`: `string`
|
|
@@ -1094,5 +1095,5 @@ Usage: `value | kmsTypeOf`
|
|
|
1094
1095
|
|
|
1095
1096
|
## Icons
|
|
1096
1097
|
|
|
1097
|
-
|
|
1098
|
+
177 icons available for `<kms-icon icon="name">`.
|
|
1098
1099
|
See `icons.json` (same directory as this file) for the full list of icon names.
|