@i-cell/ids-angular 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/accordion/accordion-animations.d.ts +1 -0
- package/accordion/accordion-defaults.d.ts +18 -0
- package/accordion/accordion-item/accordion-item.component.d.ts +27 -0
- package/accordion/accordion.component.d.ts +29 -0
- package/accordion/index.d.ts +5 -0
- package/accordion/public-api.d.ts +5 -0
- package/accordion/types/accordion-appearance.type.d.ts +5 -0
- package/avatar/avatar-defaults.d.ts +12 -0
- package/avatar/avatar-image.directive.d.ts +5 -0
- package/avatar/avatar.component.d.ts +28 -0
- package/avatar/index.d.ts +5 -0
- package/avatar/public-api.d.ts +6 -0
- package/avatar/tokens/avatar-parent.d.ts +6 -0
- package/avatar/types/avatar-type.type.d.ts +6 -0
- package/avatar/types/avatar-variant.type.d.ts +8 -0
- package/button/button-defaults.d.ts +11 -0
- package/button/button-group-defaults.d.ts +7 -0
- package/button/button-group.component.d.ts +11 -0
- package/button/button.component.d.ts +23 -0
- package/button/index.d.ts +5 -0
- package/button/public-api.d.ts +7 -0
- package/button/tokens/button-parent.d.ts +6 -0
- package/button/types/button-appearance.type.d.ts +6 -0
- package/button/types/button-variant.type.d.ts +14 -0
- package/card/card-body.directive.d.ts +6 -0
- package/card/card-defaults.d.ts +12 -0
- package/card/card-footer.directive.d.ts +6 -0
- package/card/card-header.component.d.ts +6 -0
- package/card/card-media.directive.d.ts +7 -0
- package/card/card-section-base.directive.d.ts +9 -0
- package/card/card-subtitle.directive.d.ts +5 -0
- package/card/card-title.directive.d.ts +5 -0
- package/card/card.component.d.ts +21 -0
- package/card/index.d.ts +5 -0
- package/card/public-api.d.ts +10 -0
- package/card/types/card-appearances.type.d.ts +6 -0
- package/card/types/card-variant.type.d.ts +13 -0
- package/checkbox/checkbox-defaults.d.ts +9 -0
- package/checkbox/checkbox-group-defaults.d.ts +9 -0
- package/checkbox/checkbox-group.component.d.ts +28 -0
- package/checkbox/checkbox.component.d.ts +68 -0
- package/checkbox/index.d.ts +5 -0
- package/checkbox/public-api.d.ts +7 -0
- package/checkbox/types/checkbox-events.class.d.ts +6 -0
- package/checkbox/types/checkbox-group-child.d.ts +7 -0
- package/checkbox/types/checkbox-parent.d.ts +8 -0
- package/checkbox/types/checkbox-state.type.d.ts +6 -0
- package/checkbox/types/checkbox-variant.type.d.ts +6 -0
- package/chip/chip-defaults.d.ts +12 -0
- package/chip/chip-group-defaults.d.ts +9 -0
- package/chip/chip-group.component.d.ts +14 -0
- package/chip/chip.component.d.ts +35 -0
- package/chip/index.d.ts +5 -0
- package/chip/public-api.d.ts +7 -0
- package/chip/types/chip-appearance.type.d.ts +5 -0
- package/chip/types/chip-events.type.d.ts +4 -0
- package/chip/types/chip-variant.type.d.ts +8 -0
- package/core/base-classes/component-base.d.ts +13 -0
- package/core/base-classes/directive-base.d.ts +16 -0
- package/core/directives/detect-scrollable.directive.d.ts +11 -0
- package/core/index.d.ts +5 -0
- package/core/pipes/sentence-case.pipe.d.ts +7 -0
- package/core/public-api.d.ts +17 -0
- package/core/services/resize-observer.service.d.ts +13 -0
- package/core/types/orientation.type.d.ts +5 -0
- package/core/types/position.type.d.ts +39 -0
- package/core/types/size-collection.type.d.ts +5 -0
- package/core/types/size.type.d.ts +7 -0
- package/core/utils/class-prefix.d.ts +2 -0
- package/core/utils/class.d.ts +2 -0
- package/core/utils/coercion.d.ts +6 -0
- package/core/utils/compare.d.ts +1 -0
- package/core/utils/date.d.ts +1 -0
- package/core/utils/even-odd.d.ts +2 -0
- package/core/utils/fallback-value.d.ts +1 -0
- package/core/utils/string.d.ts +1 -0
- package/dialog/custom-dialog-base.d.ts +15 -0
- package/dialog/dialog-defaults.d.ts +9 -0
- package/dialog/dialog-header.directive.d.ts +7 -0
- package/dialog/dialog.component.d.ts +22 -0
- package/dialog/dialog.service.d.ts +17 -0
- package/dialog/index.d.ts +5 -0
- package/dialog/public-api.d.ts +5 -0
- package/divider/divider-defaults.d.ts +12 -0
- package/divider/divider.component.d.ts +18 -0
- package/divider/index.d.ts +5 -0
- package/divider/public-api.d.ts +3 -0
- package/divider/types/divider-variant.type.d.ts +13 -0
- package/fesm2022/i-cell-ids-angular-accordion.mjs +223 -0
- package/fesm2022/i-cell-ids-angular-accordion.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-avatar.mjs +125 -0
- package/fesm2022/i-cell-ids-angular-avatar.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-button.mjs +117 -0
- package/fesm2022/i-cell-ids-angular-button.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-card.mjs +222 -0
- package/fesm2022/i-cell-ids-angular-card.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-checkbox.mjs +346 -0
- package/fesm2022/i-cell-ids-angular-checkbox.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-chip.mjs +166 -0
- package/fesm2022/i-cell-ids-angular-chip.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-core.mjs +266 -0
- package/fesm2022/i-cell-ids-angular-core.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-dialog.mjs +157 -0
- package/fesm2022/i-cell-ids-angular-dialog.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-divider.mjs +76 -0
- package/fesm2022/i-cell-ids-angular-divider.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-forms.mjs +871 -0
- package/fesm2022/i-cell-ids-angular-forms.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-icon-button.mjs +81 -0
- package/fesm2022/i-cell-ids-angular-icon-button.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-icon.mjs +149 -0
- package/fesm2022/i-cell-ids-angular-icon.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-menu.mjs +108 -0
- package/fesm2022/i-cell-ids-angular-menu.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-notification.mjs +167 -0
- package/fesm2022/i-cell-ids-angular-notification.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-overlay-panel.mjs +72 -0
- package/fesm2022/i-cell-ids-angular-overlay-panel.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-paginator.mjs +319 -0
- package/fesm2022/i-cell-ids-angular-paginator.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-radio.mjs +312 -0
- package/fesm2022/i-cell-ids-angular-radio.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-segmented-control-toggle.mjs +264 -0
- package/fesm2022/i-cell-ids-angular-segmented-control-toggle.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-segmented-control.mjs +283 -0
- package/fesm2022/i-cell-ids-angular-segmented-control.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-select.mjs +550 -0
- package/fesm2022/i-cell-ids-angular-select.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-snackbar.mjs +440 -0
- package/fesm2022/i-cell-ids-angular-snackbar.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-switch.mjs +181 -0
- package/fesm2022/i-cell-ids-angular-switch.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-tab.mjs +141 -0
- package/fesm2022/i-cell-ids-angular-tab.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-table.mjs +663 -0
- package/fesm2022/i-cell-ids-angular-table.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-tag.mjs +116 -0
- package/fesm2022/i-cell-ids-angular-tag.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular-tooltip.mjs +587 -0
- package/fesm2022/i-cell-ids-angular-tooltip.mjs.map +1 -0
- package/fesm2022/i-cell-ids-angular.mjs +9 -0
- package/fesm2022/i-cell-ids-angular.mjs.map +1 -0
- package/forms/common/error/error-state.d.ts +23 -0
- package/forms/common/success/success-state.d.ts +23 -0
- package/forms/components/fieldset/fieldset-defaults.d.ts +9 -0
- package/forms/components/fieldset/fieldset-message.directive.d.ts +5 -0
- package/forms/components/fieldset/fieldset-row/fieldset-row.component.d.ts +8 -0
- package/forms/components/fieldset/fieldset.component.d.ts +16 -0
- package/forms/components/form-field/form-field-control.d.ts +21 -0
- package/forms/components/form-field/form-field-defaults.d.ts +9 -0
- package/forms/components/form-field/form-field.component.d.ts +41 -0
- package/forms/components/form-field/tokens/form-field-control.d.ts +3 -0
- package/forms/components/form-field/types/form-field-variant.type.d.ts +5 -0
- package/forms/components/input/input-defaults.d.ts +9 -0
- package/forms/components/input/input.directive.d.ts +55 -0
- package/forms/components/input/types/input.type.d.ts +1 -0
- package/forms/components/message/error-message/error-message.component.d.ts +15 -0
- package/forms/components/message/hint-message/hint-message.component.d.ts +10 -0
- package/forms/components/message/message-defaults.d.ts +9 -0
- package/forms/components/message/success-message/success-message.component.d.ts +11 -0
- package/forms/components/message/types/message-parent-form-field.d.ts +9 -0
- package/forms/components/message/types/message-variant.type.d.ts +6 -0
- package/forms/components/message/types/message.type.d.ts +6 -0
- package/forms/components/option/option-group.component.d.ts +13 -0
- package/forms/components/option/option.component.d.ts +47 -0
- package/forms/components/option/tokens/option-group.d.ts +3 -0
- package/forms/components/option/tokens/option-parent.d.ts +11 -0
- package/forms/components/option/types/option-events.class.d.ts +7 -0
- package/forms/components/pseudo-checkbox/pseudo-checkbox.component.d.ts +14 -0
- package/forms/components/pseudo-checkbox/tokens/pseudo-checkbox-parent.d.ts +7 -0
- package/forms/components/pseudo-checkbox/types/pseudo-checkbox-state.type.d.ts +6 -0
- package/forms/directives/form-field-action.directive.d.ts +5 -0
- package/forms/directives/label.directive.d.ts +5 -0
- package/forms/directives/message-prefix.directive.d.ts +5 -0
- package/forms/directives/message-suffix.directive.d.ts +5 -0
- package/forms/directives/message.directive.d.ts +17 -0
- package/forms/directives/prefix.directive.d.ts +7 -0
- package/forms/directives/suffix.directive.d.ts +7 -0
- package/forms/index.d.ts +5 -0
- package/forms/public-api.d.ts +35 -0
- package/forms/validators.d.ts +9 -0
- package/icon/icon-defaults.d.ts +11 -0
- package/icon/icon.component.d.ts +32 -0
- package/icon/index.d.ts +5 -0
- package/icon/public-api.d.ts +5 -0
- package/icon/tokens/icon-parent.d.ts +6 -0
- package/icon/types/icon-source.type.d.ts +5 -0
- package/icon/types/icon-variant.type.d.ts +12 -0
- package/icon-button/icon-button-defaults.d.ts +11 -0
- package/icon-button/icon-button.component.d.ts +22 -0
- package/icon-button/index.d.ts +5 -0
- package/icon-button/public-api.d.ts +5 -0
- package/icon-button/tokens/icon-button-parent.d.ts +9 -0
- package/icon-button/types/icon-button-appearance.type.d.ts +6 -0
- package/icon-button/types/icon-button-variant.type.d.ts +13 -0
- package/index.d.ts +5 -0
- package/menu/action-menu/action-menu-trigger.directive.d.ts +12 -0
- package/menu/index.d.ts +5 -0
- package/menu/menu-item/menu-item-defaults.d.ts +11 -0
- package/menu/menu-item/menu-item.component.d.ts +23 -0
- package/menu/menu-item/types/menu-item-appearance.type.d.ts +5 -0
- package/menu/menu-item/types/menu-item-variant.type.d.ts +4 -0
- package/menu/public-api.d.ts +5 -0
- package/notification/index.d.ts +5 -0
- package/notification/notification-action-button.directive.d.ts +5 -0
- package/notification/notification-defaults.d.ts +15 -0
- package/notification/notification.component.d.ts +34 -0
- package/notification/public-api.d.ts +5 -0
- package/notification/types/notification-appearance.type.d.ts +5 -0
- package/notification/types/notification-variant.type.d.ts +10 -0
- package/overlay-panel/index.d.ts +5 -0
- package/overlay-panel/overlay-panel-defaults.d.ts +11 -0
- package/overlay-panel/overlay-panel.component.d.ts +18 -0
- package/overlay-panel/public-api.d.ts +4 -0
- package/overlay-panel/types/overlay-panel-appearance.type.d.ts +6 -0
- package/overlay-panel/types/overlay-panel-variant.type.d.ts +5 -0
- package/package.json +153 -0
- package/paginator/index.d.ts +5 -0
- package/paginator/paginator-defaults.d.ts +22 -0
- package/paginator/paginator-intl.d.ts +24 -0
- package/paginator/paginator.component.d.ts +67 -0
- package/paginator/public-api.d.ts +5 -0
- package/paginator/types/paginator-appearance.type.d.ts +4 -0
- package/paginator/types/paginator-events.class.d.ts +6 -0
- package/paginator/types/paginator-variant.type.d.ts +7 -0
- package/public-api.d.ts +2 -0
- package/radio/index.d.ts +5 -0
- package/radio/public-api.d.ts +5 -0
- package/radio/radio-defaults.d.ts +11 -0
- package/radio/radio-group.directive.d.ts +46 -0
- package/radio/radio.component.d.ts +30 -0
- package/radio/types/radio-events.class.d.ts +6 -0
- package/radio/types/radio-variant.type.d.ts +6 -0
- package/segmented-control/index.d.ts +5 -0
- package/segmented-control/public-api.d.ts +6 -0
- package/segmented-control/segmented-control-defaults.d.ts +11 -0
- package/segmented-control/segmented-control-item.component.d.ts +33 -0
- package/segmented-control/segmented-control.directive.d.ts +42 -0
- package/segmented-control/types/segmented-control-appearance.type.d.ts +4 -0
- package/segmented-control/types/segmented-control-item-change.class.d.ts +7 -0
- package/segmented-control/types/segmented-control-variant.type.d.ts +6 -0
- package/segmented-control-toggle/index.d.ts +5 -0
- package/segmented-control-toggle/public-api.d.ts +6 -0
- package/segmented-control-toggle/segmented-control-toggle-defaults.d.ts +12 -0
- package/segmented-control-toggle/segmented-control-toggle-item.component.d.ts +32 -0
- package/segmented-control-toggle/segmented-control-toggle.directive.d.ts +43 -0
- package/segmented-control-toggle/types/segmented-control-toggle-appearance.type.d.ts +5 -0
- package/segmented-control-toggle/types/segmented-control-toggle-item-change.class.d.ts +6 -0
- package/segmented-control-toggle/types/segmented-control-toggle-variant.type.d.ts +11 -0
- package/select/index.d.ts +5 -0
- package/select/public-api.d.ts +3 -0
- package/select/select-defaults.d.ts +9 -0
- package/select/select-positions.d.ts +2 -0
- package/select/select-trigger.directive.d.ts +5 -0
- package/select/select.component.d.ts +102 -0
- package/snackbar/animations.d.ts +2 -0
- package/snackbar/index.d.ts +5 -0
- package/snackbar/public-api.d.ts +7 -0
- package/snackbar/services/snackbar.service.d.ts +28 -0
- package/snackbar/snackbar-defaults.d.ts +16 -0
- package/snackbar/snackbar-group.component.d.ts +25 -0
- package/snackbar/snackbar-position-strategies.d.ts +4 -0
- package/snackbar/snackbar.component.d.ts +51 -0
- package/snackbar/types/snackbar-data.type.d.ts +15 -0
- package/snackbar/types/snackbar-inner-data.type.d.ts +4 -0
- package/snackbar/types/snackbar-position.type.d.ts +9 -0
- package/snackbar/types/snackbar-variant.type.d.ts +8 -0
- package/switch/index.d.ts +5 -0
- package/switch/public-api.d.ts +5 -0
- package/switch/switch-animations.d.ts +2 -0
- package/switch/switch-defaults.d.ts +13 -0
- package/switch/switch-group.component.d.ts +14 -0
- package/switch/switch.component.d.ts +45 -0
- package/switch/types/switch-positions.type.d.ts +10 -0
- package/switch/types/switch-variant.type.d.ts +6 -0
- package/tab/index.d.ts +5 -0
- package/tab/public-api.d.ts +6 -0
- package/tab/tab-group-defaults.d.ts +15 -0
- package/tab/tab-group.component.d.ts +29 -0
- package/tab/tab.component.d.ts +18 -0
- package/tab/types/tab-group-position.type.d.ts +6 -0
- package/tab/types/tab-group-variant.type.d.ts +6 -0
- package/tab/types/tab-indicator-position.type.d.ts +7 -0
- package/table/components/cell-content/cell-content.component.d.ts +25 -0
- package/table/datasource/server-side-datasource.d.ts +37 -0
- package/table/directives/cell-renderer.d.ts +13 -0
- package/table/directives/cell-template.d.ts +8 -0
- package/table/directives/row-info-holder.d.ts +9 -0
- package/table/index.d.ts +5 -0
- package/table/public-api.d.ts +18 -0
- package/table/table-defaults.d.ts +22 -0
- package/table/table-intl.d.ts +25 -0
- package/table/table.component.d.ts +142 -0
- package/table/types/pagination-params.d.ts +9 -0
- package/table/types/request-factory.d.ts +5 -0
- package/table/types/request-pagination-data.d.ts +6 -0
- package/table/types/response-data.d.ts +5 -0
- package/table/types/table-appearance.type.d.ts +6 -0
- package/table/types/table-cell-click-event.d.ts +6 -0
- package/table/types/table-column-def.d.ts +97 -0
- package/table/types/table-row-click-event.d.ts +4 -0
- package/table/types/table-row-keydown-event.d.ts +4 -0
- package/table/types/table-sort-direction.d.ts +6 -0
- package/table/types/table-sort-info.d.ts +6 -0
- package/table/types/table-variant.type.d.ts +6 -0
- package/tag/index.d.ts +5 -0
- package/tag/public-api.d.ts +6 -0
- package/tag/tag-defaults.d.ts +11 -0
- package/tag/tag-group-defaults.d.ts +9 -0
- package/tag/tag-group.component.d.ts +13 -0
- package/tag/tag.component.d.ts +23 -0
- package/tag/types/tag-appearance.type.d.ts +5 -0
- package/tag/types/tag-variant.type.d.ts +13 -0
- package/tooltip/index.d.ts +5 -0
- package/tooltip/public-api.d.ts +5 -0
- package/tooltip/tooltip-defaults.d.ts +18 -0
- package/tooltip/tooltip-position-strategies.d.ts +3 -0
- package/tooltip/tooltip.component.d.ts +31 -0
- package/tooltip/tooltip.directive.d.ts +60 -0
- package/tooltip/types/tooltip-position.type.d.ts +11 -0
- package/tooltip/types/tooltip-variant.type.d.ts +5 -0
- package/tooltip/types/tooltip.type.d.ts +2 -0
- package/tooltip/utils/tooltip-converters.d.ts +3 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IdsCheckboxVariantType } from './checkbox-variant.type';
|
|
2
|
+
import { InjectionToken, Signal } from '@angular/core';
|
|
3
|
+
import { IdsSizeType } from '@i-cell/ids-angular/core';
|
|
4
|
+
export interface IdsCheckboxParent {
|
|
5
|
+
size: Signal<IdsSizeType | null>;
|
|
6
|
+
variant: Signal<IdsCheckboxVariantType | null>;
|
|
7
|
+
}
|
|
8
|
+
export declare const IDS_CHECKBOX_PARENT: InjectionToken<IdsCheckboxParent>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IdsChipAppearanceType } from './types/chip-appearance.type';
|
|
2
|
+
import { IdsChipVariantType } from './types/chip-variant.type';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
import { IdsSizeType } from '@i-cell/ids-angular/core';
|
|
5
|
+
export interface IdsChipDefaultConfig {
|
|
6
|
+
removable: boolean;
|
|
7
|
+
appearance?: IdsChipAppearanceType;
|
|
8
|
+
size?: IdsSizeType;
|
|
9
|
+
variant?: IdsChipVariantType;
|
|
10
|
+
}
|
|
11
|
+
export declare const IDS_CHIP_DEFAULT_CONFIG: InjectionToken<IdsChipDefaultConfig>;
|
|
12
|
+
export declare function IDS_CHIP_DEFAULT_CONFIG_FACTORY(): Required<IdsChipDefaultConfig>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IdsChipAppearanceType } from './types/chip-appearance.type';
|
|
2
|
+
import { InjectionToken } from '@angular/core';
|
|
3
|
+
import { IdsSizeType } from '@i-cell/ids-angular/core';
|
|
4
|
+
export interface IdsChipGroupDefaultConfig {
|
|
5
|
+
appearance?: IdsChipAppearanceType;
|
|
6
|
+
size?: IdsSizeType;
|
|
7
|
+
}
|
|
8
|
+
export declare const IDS_CHIP_GROUP_DEFAULT_CONFIG: InjectionToken<IdsChipGroupDefaultConfig>;
|
|
9
|
+
export declare function IDS_CHIP_GROUP_DEFAULT_CONFIG_FACTORY(): Required<IdsChipGroupDefaultConfig>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IdsChipGroupDefaultConfig } from './chip-group-defaults';
|
|
2
|
+
import { IdsChipAppearanceType } from './types/chip-appearance.type';
|
|
3
|
+
import { ComponentBaseWithDefaults, IdsSizeType } from '@i-cell/ids-angular/core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class IdsChipGroupComponent extends ComponentBaseWithDefaults<IdsChipGroupDefaultConfig> {
|
|
6
|
+
protected get _hostName(): string;
|
|
7
|
+
protected readonly _defaultConfig: Required<IdsChipGroupDefaultConfig>;
|
|
8
|
+
appearance: import("@angular/core").InputSignal<IdsChipAppearanceType>;
|
|
9
|
+
size: import("@angular/core").InputSignal<IdsSizeType>;
|
|
10
|
+
disabled: import("@angular/core").InputSignal<boolean>;
|
|
11
|
+
protected _hostClasses: import("@angular/core").Signal<string>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsChipGroupComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IdsChipGroupComponent, "ids-chip-group", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["ids-chip, button[idsChip]"], true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IdsChipDefaultConfig } from './chip-defaults';
|
|
2
|
+
import { IdsChipAppearanceType } from './types/chip-appearance.type';
|
|
3
|
+
import { IdsChipRemoveEvent } from './types/chip-events.type';
|
|
4
|
+
import { IdsChipVariantType } from './types/chip-variant.type';
|
|
5
|
+
import { IdsAvatarParent, IdsAvatarVariantType } from '@i-cell/ids-angular/avatar';
|
|
6
|
+
import { ComponentBaseWithDefaults, IdsSizeType } from '@i-cell/ids-angular/core';
|
|
7
|
+
import { IdsIconButtonAppearanceType, IdsIconButtonParent, IdsIconButtonVariantType } from '@i-cell/ids-angular/icon-button';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class IdsChipComponent extends ComponentBaseWithDefaults<IdsChipDefaultConfig> implements IdsIconButtonParent, IdsAvatarParent {
|
|
10
|
+
protected get _hostName(): string;
|
|
11
|
+
private readonly _group;
|
|
12
|
+
protected readonly _defaultConfig: Required<IdsChipDefaultConfig>;
|
|
13
|
+
private _hostElement;
|
|
14
|
+
private _isInteractive;
|
|
15
|
+
removable: import("@angular/core").InputSignal<boolean>;
|
|
16
|
+
appearance: import("@angular/core").InputSignal<IdsChipAppearanceType>;
|
|
17
|
+
size: import("@angular/core").InputSignal<IdsSizeType>;
|
|
18
|
+
variant: import("@angular/core").InputSignal<IdsChipVariantType>;
|
|
19
|
+
disabled: import("@angular/core").InputSignal<boolean>;
|
|
20
|
+
tabIndex: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
21
|
+
removed: import("@angular/core").OutputEmitterRef<IdsChipRemoveEvent>;
|
|
22
|
+
private _parentOrSelfAppearance;
|
|
23
|
+
private _parentOrSelfSize;
|
|
24
|
+
private _parentOrSelfDisabled;
|
|
25
|
+
protected _safeRemovable: import("@angular/core").Signal<boolean>;
|
|
26
|
+
private _safeTabIndex;
|
|
27
|
+
private _safeRole;
|
|
28
|
+
protected _hostClasses: import("@angular/core").Signal<string>;
|
|
29
|
+
embeddedAvatarVariant: import("@angular/core").Signal<IdsAvatarVariantType>;
|
|
30
|
+
embeddedIconButtonVariant: import("@angular/core").Signal<IdsIconButtonVariantType>;
|
|
31
|
+
embeddedIconButtonAppearance: import("@angular/core").WritableSignal<IdsIconButtonAppearanceType>;
|
|
32
|
+
remove(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsChipComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IdsChipComponent, "ids-chip, button[idsChip]", never, { "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "tabIndex": { "alias": "tabIndex"; "required": false; "isSignal": true; }; }, { "removed": "removed"; }, never, ["ids-avatar", "[idsLeadingIcon]", "*", "button[idsIconButton]"], true, never>;
|
|
35
|
+
}
|
package/chip/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './types/chip-appearance.type';
|
|
2
|
+
export * from './types/chip-events.type';
|
|
3
|
+
export * from './types/chip-variant.type';
|
|
4
|
+
export * from './chip-defaults';
|
|
5
|
+
export * from './chip-group-defaults';
|
|
6
|
+
export * from './chip-group.component';
|
|
7
|
+
export * from './chip.component';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const IdsChipVariant: {
|
|
2
|
+
readonly PRIMARY: "primary";
|
|
3
|
+
readonly SECONDARY: "secondary";
|
|
4
|
+
readonly SURFACE: "surface";
|
|
5
|
+
readonly LIGHT: "light";
|
|
6
|
+
readonly DARK: "dark";
|
|
7
|
+
};
|
|
8
|
+
export type IdsChipVariantType = (typeof IdsChipVariant)[keyof typeof IdsChipVariant];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DirectiveBase } from './directive-base';
|
|
2
|
+
import { InjectionToken } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare abstract class ComponentBase extends DirectiveBase {
|
|
5
|
+
protected readonly _uniqueId: string;
|
|
6
|
+
readonly id: import("@angular/core").InputSignalWithTransform<string, string | undefined>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentBase, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ComponentBase, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
10
|
+
export declare abstract class ComponentBaseWithDefaults<D> extends ComponentBase {
|
|
11
|
+
protected abstract readonly _defaultConfig: D;
|
|
12
|
+
protected _getDefaultConfig(defaultConfig: Required<D>, injectionToken: InjectionToken<D>): Required<D>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DestroyRef, InjectionToken, Signal } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare abstract class DirectiveBase {
|
|
4
|
+
protected get _hostName(): string;
|
|
5
|
+
protected readonly _hostClassName: string;
|
|
6
|
+
protected readonly _destroyRef: DestroyRef;
|
|
7
|
+
protected abstract _hostClasses: Signal<string>;
|
|
8
|
+
protected _getHostClasses(appendableClassNames?: Array<string | Array<string | null | undefined> | null | undefined>, nonAppendableClassNames?: Array<string | null>): string;
|
|
9
|
+
protected _createHostError(message: string): Error;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveBase, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveBase, never, never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare abstract class DirectiveBaseWithDefaults<D> extends DirectiveBase {
|
|
14
|
+
protected abstract readonly _defaultConfig: D;
|
|
15
|
+
protected _getDefaultConfig(defaultConfig: Required<D>, injectionToken: InjectionToken<D>): Required<D>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class IdsDetectScrollableDirective implements OnInit, OnDestroy {
|
|
4
|
+
private _hostElement;
|
|
5
|
+
private _resizeObserver;
|
|
6
|
+
isScrollable: import("@angular/core").WritableSignal<boolean>;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
ngOnDestroy(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsDetectScrollableDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IdsDetectScrollableDirective, "[idsDetectScrollable]", ["idsDetectScrollable"], {}, {}, never, never, true, never>;
|
|
11
|
+
}
|
package/core/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class IdsSentenceCasePipe implements PipeTransform {
|
|
4
|
+
transform(value: string): unknown;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsSentenceCasePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IdsSentenceCasePipe, "sentenceCase", true>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export * from './base-classes/component-base';
|
|
2
|
+
export * from './base-classes/directive-base';
|
|
3
|
+
export * from './directives/detect-scrollable.directive';
|
|
4
|
+
export * from './pipes/sentence-case.pipe';
|
|
5
|
+
export * from './services/resize-observer.service';
|
|
6
|
+
export * from './types/orientation.type';
|
|
7
|
+
export * from './types/position.type';
|
|
8
|
+
export * from './types/size-collection.type';
|
|
9
|
+
export * from './types/size.type';
|
|
10
|
+
export * from './utils/class';
|
|
11
|
+
export * from './utils/class-prefix';
|
|
12
|
+
export * from './utils/coercion';
|
|
13
|
+
export * from './utils/compare';
|
|
14
|
+
export * from './utils/date';
|
|
15
|
+
export * from './utils/even-odd';
|
|
16
|
+
export * from './utils/fallback-value';
|
|
17
|
+
export * from './utils/string';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ResizeObserverService implements OnDestroy {
|
|
5
|
+
private _zone;
|
|
6
|
+
private _observers;
|
|
7
|
+
private _resizeObserver;
|
|
8
|
+
observe(target: Element): Observable<ResizeObserverEntry>;
|
|
9
|
+
unobserve(target: Element): void;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeObserverService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResizeObserverService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export declare const IdsHorizontalPosition: {
|
|
2
|
+
readonly LEFT: "left";
|
|
3
|
+
readonly RIGHT: "right";
|
|
4
|
+
};
|
|
5
|
+
export type IdsHorizontalPositionType = (typeof IdsHorizontalPosition)[keyof typeof IdsHorizontalPosition];
|
|
6
|
+
export declare const IdsExtendedHorizontalPosition: {
|
|
7
|
+
readonly CENTER: "center";
|
|
8
|
+
readonly LEFT: "left";
|
|
9
|
+
readonly RIGHT: "right";
|
|
10
|
+
};
|
|
11
|
+
export type IdsExtendedHorizontalPositionType = (typeof IdsExtendedHorizontalPosition)[keyof typeof IdsExtendedHorizontalPosition];
|
|
12
|
+
export declare const IdsVerticalPosition: {
|
|
13
|
+
readonly TOP: "top";
|
|
14
|
+
readonly BOTTOM: "bottom";
|
|
15
|
+
};
|
|
16
|
+
export type IdsVerticalPositionType = (typeof IdsVerticalPosition)[keyof typeof IdsVerticalPosition];
|
|
17
|
+
export declare const IdsExtendedVerticalPosition: {
|
|
18
|
+
readonly CENTER: "center";
|
|
19
|
+
readonly TOP: "top";
|
|
20
|
+
readonly BOTTOM: "bottom";
|
|
21
|
+
};
|
|
22
|
+
export type IdsExtendedVerticalPositionType = (typeof IdsExtendedVerticalPosition)[keyof typeof IdsExtendedVerticalPosition];
|
|
23
|
+
export declare const IdsPosition: {
|
|
24
|
+
readonly TOP: "top";
|
|
25
|
+
readonly BOTTOM: "bottom";
|
|
26
|
+
readonly LEFT: "left";
|
|
27
|
+
readonly RIGHT: "right";
|
|
28
|
+
};
|
|
29
|
+
export type IdsPositionType = (typeof IdsPosition)[keyof typeof IdsPosition];
|
|
30
|
+
export type IdsPositionPairType = [IdsHorizontalPositionType, IdsVerticalPositionType];
|
|
31
|
+
export declare const IdsExtendedPosition: {
|
|
32
|
+
readonly CENTER: "center";
|
|
33
|
+
readonly TOP: "top";
|
|
34
|
+
readonly BOTTOM: "bottom";
|
|
35
|
+
readonly LEFT: "left";
|
|
36
|
+
readonly RIGHT: "right";
|
|
37
|
+
};
|
|
38
|
+
export type IdsExtendedPositionType = (typeof IdsExtendedPosition)[keyof typeof IdsExtendedPosition];
|
|
39
|
+
export type IdsExtendedPositionPairType = [IdsExtendedHorizontalPositionType, IdsExtendedVerticalPositionType];
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare function addClassPrefix(hostClass: string, className: string | Array<string | null | undefined> | null | undefined): string | null;
|
|
2
|
+
export declare function createClassList(hostClass: string, appendableClassNames?: Array<string | Array<string | null | undefined> | null | undefined>, nonAppendableClassNames?: Array<string | null>): string;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** Converts a bound attribute's value to a boolean. */
|
|
2
|
+
export declare function coerceBooleanAttribute(value: unknown): boolean;
|
|
3
|
+
/** Converts a bound attribute's value to a number. */
|
|
4
|
+
export declare function coerceNumberAttribute(value: unknown, fallbackValue?: number): number;
|
|
5
|
+
/** Converts a bound attribute's value to a string and trim. */
|
|
6
|
+
export declare function coerceStringAttribute(value: unknown): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function compare(value1: unknown, value2: unknown): number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isValidDate(value: unknown): value is Date;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function fallbackValue<T>(value: T | undefined, fallbackValue: T): T;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isString(value: unknown): value is string;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IdsDialogComponent } from './dialog.component';
|
|
2
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare abstract class IdsCustomDialogBase<ResultType = unknown> implements AfterViewInit, OnDestroy {
|
|
6
|
+
dialogResult: Subject<ResultType | undefined>;
|
|
7
|
+
protected _dialog: import("@angular/core").Signal<IdsDialogComponent>;
|
|
8
|
+
private _closeSub?;
|
|
9
|
+
ngAfterViewInit(): void;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
close(payload?: ResultType): void;
|
|
12
|
+
private _setDialogResult;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsCustomDialogBase<any>, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IdsCustomDialogBase<any>, never, never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { IdsSizeType } from '@i-cell/ids-angular/core';
|
|
3
|
+
export interface IdsDialogDefaultConfig {
|
|
4
|
+
size?: IdsSizeType;
|
|
5
|
+
showCloseButton?: boolean;
|
|
6
|
+
showBackdrop?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const IDS_DIALOG_DEFAULT_CONFIG: InjectionToken<IdsDialogDefaultConfig>;
|
|
9
|
+
export declare function IDS_DIALOG_DEFAULT_CONFIG_FACTORY(): Required<IdsDialogDefaultConfig>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class IdsDialogHeaderDirective {
|
|
4
|
+
template: TemplateRef<any>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsDialogHeaderDirective, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IdsDialogHeaderDirective, "[idsDialogHeader]", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IdsDialogDefaultConfig } from './dialog-defaults';
|
|
2
|
+
import { IdsDialogHeaderDirective } from './dialog-header.directive';
|
|
3
|
+
import { ComponentBaseWithDefaults, IdsSizeType } from '@i-cell/ids-angular/core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class IdsDialogComponent extends ComponentBaseWithDefaults<IdsDialogDefaultConfig> {
|
|
6
|
+
protected get _hostName(): string;
|
|
7
|
+
protected readonly _defaultConfig: Required<IdsDialogDefaultConfig>;
|
|
8
|
+
dialog: HTMLDialogElement;
|
|
9
|
+
titleId: import("@angular/core").Signal<string>;
|
|
10
|
+
size: import("@angular/core").InputSignal<IdsSizeType>;
|
|
11
|
+
mainTitle: import("@angular/core").InputSignal<string>;
|
|
12
|
+
subTitle: import("@angular/core").InputSignal<string | undefined>;
|
|
13
|
+
showCloseButton: import("@angular/core").InputSignal<boolean>;
|
|
14
|
+
showBackdrop: import("@angular/core").InputSignal<boolean>;
|
|
15
|
+
customHeader: import("@angular/core").Signal<IdsDialogHeaderDirective | undefined>;
|
|
16
|
+
protected _hostClasses: import("@angular/core").Signal<string>;
|
|
17
|
+
private _onCancel;
|
|
18
|
+
open(): void;
|
|
19
|
+
close(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsDialogComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IdsDialogComponent, "dialog[idsDialog]", ["idsDialog"], { "size": { "alias": "size"; "required": false; "isSignal": true; }; "mainTitle": { "alias": "mainTitle"; "required": true; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; "isSignal": true; }; "showBackdrop": { "alias": "showBackdrop"; "required": false; "isSignal": true; }; }, {}, ["customHeader"], ["[idsDialogContent]", "[idsDialogActions]"], true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IdsCustomDialogBase } from './custom-dialog-base';
|
|
2
|
+
import { Provider, Signal, StaticProvider, Type } from '@angular/core';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class IdsDialogService {
|
|
6
|
+
private _appRef;
|
|
7
|
+
private _document;
|
|
8
|
+
private _injector;
|
|
9
|
+
open<C extends IdsCustomDialogBase<R>, R = unknown>(component: Type<C>, options?: {
|
|
10
|
+
providers?: (Provider | StaticProvider)[];
|
|
11
|
+
inputs?: {
|
|
12
|
+
[P in keyof C]?: C[P] extends Signal<infer T> ? T : C[P];
|
|
13
|
+
};
|
|
14
|
+
}): Observable<R | undefined>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsDialogService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IdsDialogService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IdsDividerVariantType } from './types/divider-variant.type';
|
|
2
|
+
import { InjectionToken } from '@angular/core';
|
|
3
|
+
import { IdsSizeType, IdsOrientationType } from '@i-cell/ids-angular/core';
|
|
4
|
+
export interface IdsDividerDefaultConfig {
|
|
5
|
+
size?: IdsSizeType;
|
|
6
|
+
variant?: IdsDividerVariantType;
|
|
7
|
+
orientation?: IdsOrientationType;
|
|
8
|
+
width?: string;
|
|
9
|
+
height?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const IDS_DIVIDER_DEFAULT_CONFIG: InjectionToken<IdsDividerDefaultConfig>;
|
|
12
|
+
export declare function IDS_DIVIDER_DEFAULT_CONFIG_FACTORY(): Required<IdsDividerDefaultConfig>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IdsDividerDefaultConfig } from './divider-defaults';
|
|
2
|
+
import { IdsDividerVariantType } from './types/divider-variant.type';
|
|
3
|
+
import { ComponentBaseWithDefaults, IdsOrientationType, IdsSizeType } from '@i-cell/ids-angular/core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class IdsDividerComponent extends ComponentBaseWithDefaults<IdsDividerDefaultConfig> {
|
|
6
|
+
protected get _hostName(): string;
|
|
7
|
+
protected readonly _defaultConfig: Required<IdsDividerDefaultConfig>;
|
|
8
|
+
orientation: import("@angular/core").InputSignal<IdsOrientationType>;
|
|
9
|
+
size: import("@angular/core").InputSignal<IdsSizeType>;
|
|
10
|
+
variant: import("@angular/core").InputSignal<IdsDividerVariantType>;
|
|
11
|
+
width: import("@angular/core").InputSignal<string>;
|
|
12
|
+
height: import("@angular/core").InputSignal<string>;
|
|
13
|
+
private _safeWidth;
|
|
14
|
+
private _safeHeight;
|
|
15
|
+
protected _hostClasses: import("@angular/core").Signal<string>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdsDividerComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IdsDividerComponent, "ids-divider,div[idsDivider]", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const IdsDividerVariant: {
|
|
2
|
+
readonly PRIMARY: "primary";
|
|
3
|
+
readonly SECONDARY: "secondary";
|
|
4
|
+
readonly SURFACE: "surface";
|
|
5
|
+
readonly BRAND: "brand";
|
|
6
|
+
readonly LIGHT: "light";
|
|
7
|
+
readonly DARK: "dark";
|
|
8
|
+
readonly INFO: "info";
|
|
9
|
+
readonly SUCCESS: "success";
|
|
10
|
+
readonly WARNING: "warning";
|
|
11
|
+
readonly ERROR: "error";
|
|
12
|
+
};
|
|
13
|
+
export type IdsDividerVariantType = (typeof IdsDividerVariant)[keyof typeof IdsDividerVariant];
|