@vsn-ux/ngx-gaia 0.10.0 → 0.10.2

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/index.d.ts CHANGED
@@ -514,16 +514,18 @@ declare class GaDatepickerNativeUtcIsoValueAdapter extends GaDatepickerValueAdap
514
514
  }
515
515
 
516
516
  declare class GaSegmentedControlComponent {
517
- readonly selected: _angular_core.ModelSignal<string | undefined>;
518
- readonly change: _angular_core.OutputEmitterRef<string | undefined>;
517
+ readonly selected: _angular_core.ModelSignal<any>;
518
+ readonly compareFn: _angular_core.InputSignal<(o1: any, o2: any) => boolean>;
519
+ readonly change: _angular_core.OutputEmitterRef<any>;
520
+ readonly safeCompareFn: _angular_core.Signal<(o1: any, o2: any) => boolean>;
519
521
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSegmentedControlComponent, never>;
520
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSegmentedControlComponent, "ga-segmented-control", never, { "selected": { "alias": "selected"; "required": false; "isSignal": true; }; }, { "selected": "selectedChange"; "change": "change"; }, never, ["*"], true, never>;
522
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSegmentedControlComponent, "ga-segmented-control", never, { "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "compareFn": { "alias": "compareFn"; "required": false; "isSignal": true; }; }, { "selected": "selectedChange"; "change": "change"; }, never, ["*"], true, never>;
521
523
  }
522
524
 
523
525
  declare class GaSegmentedControlButtonDirective {
524
526
  /** @ignore */
525
527
  private readonly group;
526
- readonly value: _angular_core.InputSignal<string | undefined>;
528
+ readonly value: _angular_core.InputSignal<any>;
527
529
  readonly selected: _angular_core.Signal<boolean>;
528
530
  onClick(): void;
529
531
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSegmentedControlButtonDirective, never>;
@@ -531,14 +533,14 @@ declare class GaSegmentedControlButtonDirective {
531
533
  }
532
534
 
533
535
  declare class GaSegmentedControlIconButtonComponent {
534
- readonly value: _angular_core.InputSignal<string>;
536
+ readonly value: _angular_core.InputSignal<any>;
535
537
  readonly icon: _angular_core.InputSignal<lucide_angular.LucideIconData>;
536
538
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSegmentedControlIconButtonComponent, never>;
537
539
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSegmentedControlIconButtonComponent, "ga-segmented-control-icon-button", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
538
540
  }
539
541
 
540
542
  declare class GaSegmentedControlTextButtonComponent {
541
- readonly value: _angular_core.InputSignal<string>;
543
+ readonly value: _angular_core.InputSignal<any>;
542
544
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSegmentedControlTextButtonComponent, never>;
543
545
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSegmentedControlTextButtonComponent, "ga-segmented-control-text-button", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
544
546
  }
@@ -1650,6 +1652,65 @@ declare class GaLinkModule {
1650
1652
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaLinkModule>;
1651
1653
  }
1652
1654
 
1655
+ declare class GaTabContentDirective {
1656
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaTabContentDirective, never>;
1657
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaTabContentDirective, "ng-template[gaTabContent]", never, {}, {}, never, never, true, never>;
1658
+ }
1659
+ declare class GaTabComponent {
1660
+ readonly title: _angular_core.InputSignal<string>;
1661
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
1662
+ readonly rightIcon: _angular_core.InputSignal<lucide_angular.LucideIconData | undefined>;
1663
+ readonly rightIconColor: _angular_core.InputSignal<string | undefined>;
1664
+ /** @ignore */
1665
+ readonly explicitContent: _angular_core.Signal<TemplateRef<any> | undefined>;
1666
+ /** @ignore */
1667
+ readonly implicitContent: _angular_core.Signal<TemplateRef<any>>;
1668
+ /** @ignore */
1669
+ readonly contentTpl: _angular_core.Signal<TemplateRef<any>>;
1670
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaTabComponent, never>;
1671
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaTabComponent, "ga-tab", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "rightIcon": { "alias": "rightIcon"; "required": false; "isSignal": true; }; "rightIconColor": { "alias": "rightIconColor"; "required": false; "isSignal": true; }; }, {}, ["explicitContent"], ["*"], true, never>;
1672
+ }
1673
+
1674
+ interface GaTabChangeEvent {
1675
+ index: number;
1676
+ tab: GaTabComponent;
1677
+ }
1678
+ type GaTabsOrientation = 'horizontal' | 'vertical';
1679
+ interface GaBeforeTabChangeEvent {
1680
+ newIndex: number;
1681
+ oldIndex: number;
1682
+ preventChange: () => void;
1683
+ }
1684
+ declare class GaTabsComponent {
1685
+ /** @ignore */
1686
+ readonly uniqueId: string;
1687
+ /** @ignore */
1688
+ readonly selectedTab: _angular_core.WritableSignal<GaTabComponent | null>;
1689
+ /** @ignore */
1690
+ readonly tabs: _angular_core.Signal<readonly GaTabComponent[]>;
1691
+ readonly withKeyline: _angular_core.InputSignalWithTransform<boolean, unknown>;
1692
+ readonly orientation: _angular_core.InputSignal<GaTabsOrientation>;
1693
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1694
+ readonly ariaLabelledby: _angular_core.InputSignal<string | undefined>;
1695
+ readonly selectedIndexInput: _angular_core.InputSignalWithTransform<number, unknown>;
1696
+ readonly selectedIndex: _angular_core.WritableSignal<number>;
1697
+ readonly beforeTabChange: _angular_core.OutputEmitterRef<GaBeforeTabChangeEvent>;
1698
+ readonly selectedIndexChange: _angular_core.OutputEmitterRef<number>;
1699
+ readonly selectedTabChange: _angular_core.OutputEmitterRef<GaTabChangeEvent>;
1700
+ constructor();
1701
+ /** @ignore */
1702
+ onTabClick(index: number): void;
1703
+ protected selectTab(index: number, broadcastEvent: boolean): void;
1704
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaTabsComponent, never>;
1705
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaTabsComponent, "ga-tabs", never, { "withKeyline": { "alias": "withKeyline"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "selectedIndexInput": { "alias": "selectedIndex"; "required": false; "isSignal": true; }; }, { "beforeTabChange": "beforeTabChange"; "selectedIndexChange": "selectedIndexChange"; "selectedTabChange": "selectedTabChange"; }, ["tabs"], never, true, never>;
1706
+ }
1707
+
1708
+ declare class GaTabsModule {
1709
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaTabsModule, never>;
1710
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<GaTabsModule, never, [typeof GaTabsComponent, typeof GaTabComponent, typeof GaTabContentDirective], [typeof GaTabsComponent, typeof GaTabComponent, typeof GaTabContentDirective]>;
1711
+ static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaTabsModule>;
1712
+ }
1713
+
1653
1714
  declare class GaTextAreaDirective {
1654
1715
  private readonly implicitNgControlState;
1655
1716
  private readonly formFieldConnector;
@@ -1704,5 +1765,5 @@ declare class GaChipModule {
1704
1765
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaChipModule>;
1705
1766
  }
1706
1767
 
1707
- export { CHECKBOX_CONTROL_VALUE_ACCESSOR, DEFAULT_MODAL_OPTIONS, GA_ALERT_I18N_FACTORY, GA_BASE_FONT_SIZE, GA_BUTTON_I18N_FACTORY, GA_CHECKBOX_REQUIRED_VALIDATOR, GA_DATA_SELECT_I18N_FACTORY, GA_DATA_SELECT_REQUIRED_VALIDATOR, GA_DATEPICKER_I18N_FACTORY, GA_DATEPICKER_PARSER_FORMATTER_FACTORY, GA_DATEPICKER_VALUE_ADAPTER_FACTORY, GA_DATE_PARSER_FORMATTER_CONFIG, GA_DEFAULT_DATEPICKER_FORMATS, GA_FORM_CONTROL_ADAPTER, GA_FORM_ERRORS, GA_ICON_DEFAULT_SIZE, GA_MODAL_DATA, GA_MODAL_I18N_FACTORY, GA_SELECT_I18N_FACTORY, GA_SELECT_REQUIRED_VALIDATOR, GA_TOOLTIP_DEFAULT_OFFSET, GaAlertComponent, GaAlertI18n, GaAlertI18nDefault, GaAlertModule, GaAlertTitleActionsComponent, GaAlertTitleComponent, GaBadgeComponent, GaBadgeModule, GaButtonDirective, GaButtonI18n, GaButtonI18nDefault, GaButtonModule, GaCardComponent, GaCardModule, GaCheckboxComponent, GaCheckboxModule, GaCheckboxRequiredValidator, GaChipComponent, GaChipListboxComponent, GaChipModule, GaDataSelectComponent, GaDataSelectI18n, GaDataSelectI18nDefault, GaDataSelectModule, GaDataSelectOptgroupLabelDirective, GaDataSelectOptionLabelDirective, GaDataSelectRequiredValidator, GaDataSelectValueDirective, GaDatepickerComponent, GaDatepickerI18n, GaDatepickerI18nDefault, GaDatepickerInputDirective, GaDatepickerModule, GaDatepickerNativeUtcIsoValueAdapter, GaDatepickerNativeUtcValueAdapter, GaDatepickerParserFormatter, GaDatepickerParserFormatterDefault, GaDatepickerStructValueAdapter, GaDatepickerToggleComponent, GaDatepickerValueAdapter, GaFieldErrorDirective, GaFieldInfoComponent, GaFieldLabelComponent, GaFormControlDirective, GaFormControlErrorsDirective, GaFormFieldComponent, GaFormFieldConnector, GaFormFieldModule, GaIconButtonDirective, GaIconComponent, GaIconModule, GaInputComponent, GaInputDirective, GaInputModule, GaLabelledByFormFieldDirective, GaLinkDirective, GaLinkModule, GaMenuComponent, GaMenuItemComponent, GaMenuModule, GaMenuSeparatorComponent, GaMenuTitleComponent, GaMenuTriggerDirective, GaMenuTriggerIconComponent, GaModalActionsComponent, GaModalCloseDirective, GaModalComponent, GaModalContentComponent, GaModalDescriptionComponent, GaModalDescriptionDirective, GaModalHeaderComponent, GaModalI18n, GaModalI18nDefault, GaModalLabelDirective, GaModalModule, GaModalOptions, GaModalRef, GaModalService, GaModalTitleDirective, GaOptgroupComponent, GaOptionComponent, GaRadioButtonComponent, GaRadioGroupComponent, GaRadioModule, GaSegmentedControlButtonDirective, GaSegmentedControlComponent, GaSegmentedControlIconButtonComponent, GaSegmentedControlModule, GaSegmentedControlTextButtonComponent, GaSelectComponent, GaSelectDropdownComponent, GaSelectDropdownSpinnerComponent, GaSelectI18n, GaSelectI18nDefault, GaSelectModule, GaSelectRequiredValidator, GaSelectValueComponent, GaSpinnerComponent, GaSpinnerModule, GaSwitchComponent, GaSwitchModule, GaTextAreaDirective, GaTextAreaModule, GaTooltipComponent, GaTooltipDirective, GaTooltipModule, RADIO_CONTROL_VALUE_ACCESSOR, SWITCH_CONTROL_VALUE_ACCESSOR, compareStructs, extendGaDateParserFormatter, injectNgControlState, provideGaAlertI18n, provideGaBaseFontSize, provideGaButtonI18n, provideGaDataSelectI18n, provideGaDatepickerI18n, provideGaDatepickerParserFormatter, provideGaDatepickerValueAdapter, provideGaFormErrors, provideGaModalI18n, provideGaModalOptions, provideGaSelectI18n };
1708
- export type { GaAlertVariant, GaBadgeType, GaBadgeVariant, GaButtonType, GaChipVariant, GaDatepickerFormats, GaDatepickerStruct, GaFormControlAdapter, GaFormErrorMessage, GaFormErrorsConfig, GaFormErrorsMap, GaIconButtonVariant, GaIconData, GaLinkSize, GaLinkVariant, GaModalRole, GaModalSize, GaModalType, GaModalVerticalPosition, GaTooltipControlMode, GaTooltipDirection, GaTooltipPlacement, GaTooltipPosition, IGaDatepickerI18n, IGaSelectOption };
1768
+ export { CHECKBOX_CONTROL_VALUE_ACCESSOR, DEFAULT_MODAL_OPTIONS, GA_ALERT_I18N_FACTORY, GA_BASE_FONT_SIZE, GA_BUTTON_I18N_FACTORY, GA_CHECKBOX_REQUIRED_VALIDATOR, GA_DATA_SELECT_I18N_FACTORY, GA_DATA_SELECT_REQUIRED_VALIDATOR, GA_DATEPICKER_I18N_FACTORY, GA_DATEPICKER_PARSER_FORMATTER_FACTORY, GA_DATEPICKER_VALUE_ADAPTER_FACTORY, GA_DATE_PARSER_FORMATTER_CONFIG, GA_DEFAULT_DATEPICKER_FORMATS, GA_FORM_CONTROL_ADAPTER, GA_FORM_ERRORS, GA_ICON_DEFAULT_SIZE, GA_MODAL_DATA, GA_MODAL_I18N_FACTORY, GA_SELECT_I18N_FACTORY, GA_SELECT_REQUIRED_VALIDATOR, GA_TOOLTIP_DEFAULT_OFFSET, GaAlertComponent, GaAlertI18n, GaAlertI18nDefault, GaAlertModule, GaAlertTitleActionsComponent, GaAlertTitleComponent, GaBadgeComponent, GaBadgeModule, GaButtonDirective, GaButtonI18n, GaButtonI18nDefault, GaButtonModule, GaCardComponent, GaCardModule, GaCheckboxComponent, GaCheckboxModule, GaCheckboxRequiredValidator, GaChipComponent, GaChipListboxComponent, GaChipModule, GaDataSelectComponent, GaDataSelectI18n, GaDataSelectI18nDefault, GaDataSelectModule, GaDataSelectOptgroupLabelDirective, GaDataSelectOptionLabelDirective, GaDataSelectRequiredValidator, GaDataSelectValueDirective, GaDatepickerComponent, GaDatepickerI18n, GaDatepickerI18nDefault, GaDatepickerInputDirective, GaDatepickerModule, GaDatepickerNativeUtcIsoValueAdapter, GaDatepickerNativeUtcValueAdapter, GaDatepickerParserFormatter, GaDatepickerParserFormatterDefault, GaDatepickerStructValueAdapter, GaDatepickerToggleComponent, GaDatepickerValueAdapter, GaFieldErrorDirective, GaFieldInfoComponent, GaFieldLabelComponent, GaFormControlDirective, GaFormControlErrorsDirective, GaFormFieldComponent, GaFormFieldConnector, GaFormFieldModule, GaIconButtonDirective, GaIconComponent, GaIconModule, GaInputComponent, GaInputDirective, GaInputModule, GaLabelledByFormFieldDirective, GaLinkDirective, GaLinkModule, GaMenuComponent, GaMenuItemComponent, GaMenuModule, GaMenuSeparatorComponent, GaMenuTitleComponent, GaMenuTriggerDirective, GaMenuTriggerIconComponent, GaModalActionsComponent, GaModalCloseDirective, GaModalComponent, GaModalContentComponent, GaModalDescriptionComponent, GaModalDescriptionDirective, GaModalHeaderComponent, GaModalI18n, GaModalI18nDefault, GaModalLabelDirective, GaModalModule, GaModalOptions, GaModalRef, GaModalService, GaModalTitleDirective, GaOptgroupComponent, GaOptionComponent, GaRadioButtonComponent, GaRadioGroupComponent, GaRadioModule, GaSegmentedControlButtonDirective, GaSegmentedControlComponent, GaSegmentedControlIconButtonComponent, GaSegmentedControlModule, GaSegmentedControlTextButtonComponent, GaSelectComponent, GaSelectDropdownComponent, GaSelectDropdownSpinnerComponent, GaSelectI18n, GaSelectI18nDefault, GaSelectModule, GaSelectRequiredValidator, GaSelectValueComponent, GaSpinnerComponent, GaSpinnerModule, GaSwitchComponent, GaSwitchModule, GaTabComponent, GaTabContentDirective, GaTabsComponent, GaTabsModule, GaTextAreaDirective, GaTextAreaModule, GaTooltipComponent, GaTooltipDirective, GaTooltipModule, RADIO_CONTROL_VALUE_ACCESSOR, SWITCH_CONTROL_VALUE_ACCESSOR, compareStructs, extendGaDateParserFormatter, injectNgControlState, provideGaAlertI18n, provideGaBaseFontSize, provideGaButtonI18n, provideGaDataSelectI18n, provideGaDatepickerI18n, provideGaDatepickerParserFormatter, provideGaDatepickerValueAdapter, provideGaFormErrors, provideGaModalI18n, provideGaModalOptions, provideGaSelectI18n };
1769
+ export type { GaAlertVariant, GaBadgeType, GaBadgeVariant, GaBeforeTabChangeEvent, GaButtonType, GaChipVariant, GaDatepickerFormats, GaDatepickerStruct, GaFormControlAdapter, GaFormErrorMessage, GaFormErrorsConfig, GaFormErrorsMap, GaIconButtonVariant, GaIconData, GaLinkSize, GaLinkVariant, GaModalRole, GaModalSize, GaModalType, GaModalVerticalPosition, GaTabChangeEvent, GaTabsOrientation, GaTooltipControlMode, GaTooltipDirection, GaTooltipPlacement, GaTooltipPosition, IGaDatepickerI18n, IGaSelectOption };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsn-ux/ngx-gaia",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "^20.0.0",