@acorex/components 5.0.6 → 5.0.10

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.
Files changed (91) hide show
  1. package/bundles/acorex-components.umd.js +1110 -436
  2. package/bundles/acorex-components.umd.js.map +1 -1
  3. package/esm2015/lib/badge/badge.component.js +34 -0
  4. package/esm2015/lib/badge/badge.module.js +21 -0
  5. package/esm2015/lib/badge/index.js +3 -0
  6. package/esm2015/lib/base/mixin/base-components.class.js +9 -6
  7. package/esm2015/lib/base/mixin/button-mixin.class.js +2 -2
  8. package/esm2015/lib/base/mixin/interactive-mixin.class.js +7 -2
  9. package/esm2015/lib/base/mixin/mixin.class.js +2 -2
  10. package/esm2015/lib/base/mixin/value-mixin.class.js +3 -3
  11. package/esm2015/lib/button/button.component.js +3 -9
  12. package/esm2015/lib/calendar/calendar.component.js +266 -38
  13. package/esm2015/lib/calendar/calendar.module.js +4 -3
  14. package/esm2015/lib/checkbox/checkbox.component.js +30 -11
  15. package/esm2015/lib/datepicker/datepicker.component.js +2 -2
  16. package/esm2015/lib/decorators/content.component.js +26 -0
  17. package/esm2015/lib/decorators/decorators.module.js +4 -3
  18. package/esm2015/lib/decorators/index.js +2 -1
  19. package/esm2015/lib/decorators/prefix.component.js +5 -6
  20. package/esm2015/lib/decorators/suffix.component.js +5 -10
  21. package/esm2015/lib/dialog/dialog.component.js +2 -2
  22. package/esm2015/lib/label/label.component.js +4 -4
  23. package/esm2015/lib/page/base-page.class.js +2 -1
  24. package/esm2015/lib/page/page-footer.component.js +3 -7
  25. package/esm2015/lib/password-box/index.js +3 -0
  26. package/esm2015/lib/password-box/password-box.component.js +74 -0
  27. package/esm2015/lib/password-box/password-box.module.js +35 -0
  28. package/esm2015/lib/popover/popover.component.js +1 -2
  29. package/esm2015/lib/popup/popup.component.js +16 -8
  30. package/esm2015/lib/radio/index.js +3 -0
  31. package/esm2015/lib/radio/radio.component.js +22 -0
  32. package/esm2015/lib/radio/radio.module.js +21 -0
  33. package/esm2015/lib/selectbox/selectbox.component.js +11 -3
  34. package/esm2015/lib/selectbox/selectbox.module.js +8 -4
  35. package/esm2015/lib/selection-list/selection-list.component.js +2 -2
  36. package/esm2015/lib/tabs/index.js +4 -2
  37. package/esm2015/lib/tabs/tab-content.directive.js +29 -0
  38. package/esm2015/lib/tabs/tab-item.component.js +91 -0
  39. package/esm2015/lib/tabs/tab-strip.component.js +12 -7
  40. package/esm2015/lib/tabs/tab-view.component.js +4 -5
  41. package/esm2015/lib/tabs/tab.component.js +2 -3
  42. package/esm2015/lib/tabs/tabs.component.js +67 -0
  43. package/esm2015/lib/tabs/tabs.module.js +9 -7
  44. package/esm2015/public-api.js +5 -2
  45. package/fesm2015/acorex-components.js +1061 -436
  46. package/fesm2015/acorex-components.js.map +1 -1
  47. package/lib/badge/badge.component.d.ts +11 -0
  48. package/lib/badge/badge.module.d.ts +8 -0
  49. package/lib/badge/index.d.ts +2 -0
  50. package/lib/base/mixin/base-components.class.d.ts +2 -0
  51. package/lib/base/mixin/button-mixin.class.d.ts +4 -1
  52. package/lib/base/mixin/clickable-mixin.class.d.ts +1 -0
  53. package/lib/base/mixin/datalist-component.class.d.ts +1 -0
  54. package/lib/base/mixin/dropdown-mixin.class.d.ts +1 -0
  55. package/lib/base/mixin/interactive-mixin.class.d.ts +4 -2
  56. package/lib/base/mixin/loading-mixin.class.d.ts +2 -3
  57. package/lib/base/mixin/mixin.class.d.ts +17 -117
  58. package/lib/base/mixin/selection-component.class.d.ts +1 -0
  59. package/lib/base/mixin/sizable-mixin.class.d.ts +1 -0
  60. package/lib/base/mixin/textbox-mixin.class.d.ts +5 -7
  61. package/lib/base/mixin/value-mixin.class.d.ts +5 -5
  62. package/lib/button/button-item.component.d.ts +2 -0
  63. package/lib/button/button.component.d.ts +0 -1
  64. package/lib/calendar/calendar.component.d.ts +52 -12
  65. package/lib/calendar/calendar.module.d.ts +4 -3
  66. package/lib/checkbox/checkbox.component.d.ts +6 -5
  67. package/lib/decorators/content.component.d.ts +8 -0
  68. package/lib/decorators/decorators.module.d.ts +3 -2
  69. package/lib/decorators/index.d.ts +1 -0
  70. package/lib/decorators/prefix.component.d.ts +1 -1
  71. package/lib/decorators/suffix.component.d.ts +1 -1
  72. package/lib/dropdown/dropdown-base.class.d.ts +2 -0
  73. package/lib/label/label.component.d.ts +2 -2
  74. package/lib/password-box/index.d.ts +2 -0
  75. package/lib/password-box/password-box.component.d.ts +24 -0
  76. package/lib/password-box/password-box.module.d.ts +12 -0
  77. package/lib/popup/popup.component.d.ts +3 -2
  78. package/lib/radio/index.d.ts +2 -0
  79. package/lib/radio/radio.component.d.ts +8 -0
  80. package/lib/radio/radio.module.d.ts +8 -0
  81. package/lib/selectbox/selectbox.component.d.ts +1 -0
  82. package/lib/selectbox/selectbox.module.d.ts +5 -1
  83. package/lib/tabs/index.d.ts +3 -1
  84. package/lib/tabs/tab-content.directive.d.ts +11 -0
  85. package/lib/tabs/tab-item.component.d.ts +17 -0
  86. package/lib/tabs/tab-strip.component.d.ts +4 -3
  87. package/lib/tabs/tab-view.component.d.ts +2 -2
  88. package/lib/tabs/tabs.component.d.ts +17 -0
  89. package/lib/tabs/tabs.module.d.ts +6 -4
  90. package/package.json +18 -18
  91. package/public-api.d.ts +4 -1
@@ -1,7 +1,7 @@
1
1
  import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
- import { AXSizableComponentMixin } from '../base';
2
+ import { AXBaseComponentMixin } from '../base';
3
3
  import * as i0 from "@angular/core";
4
- export declare class AXLabelComponent extends AXSizableComponentMixin {
4
+ export declare class AXLabelComponent extends AXBaseComponentMixin {
5
5
  constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<AXLabelComponent, never>;
7
7
  static ɵcmp: i0.ɵɵComponentDeclaration<AXLabelComponent, "ax-label", never, {}, {}, never, ["*"]>;
@@ -0,0 +1,2 @@
1
+ export * from './password-box.component';
2
+ export * from './password-box.module';
@@ -0,0 +1,24 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { AXBaseTextBoxMixin } from '../base/mixin/mixin.class';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * The Textbox is a component which detects user interaction and triggers a corresponding event
6
+ *
7
+ * @category Components
8
+ */
9
+ export declare class AXPasswordBoxComponent extends AXBaseTextBoxMixin {
10
+ get hostClass(): string;
11
+ _type: 'password' | 'text';
12
+ _icon: 'ax-ic-eye' | 'ax-ic-eye-off';
13
+ /**
14
+ * A flag for showing or hiding password button.
15
+ */
16
+ showToggleButton: boolean;
17
+ /**
18
+ * @ignore
19
+ */
20
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
21
+ toggleType(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXPasswordBoxComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXPasswordBoxComponent, "ax-password-box", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "cssClass": "cssClass"; "size": "size"; "placeholder": "placeholder"; "maxLength": "maxLength"; "allowNull": "allowNull"; "debounceTime": "debounceTime"; "value": "value"; "name": "name"; "showToggleButton": "showToggleButton"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-prefix", "ax-suffix", "ax-validation-rule", "ax-input-mask"]>;
24
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./password-box.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "../button/button.module";
6
+ import * as i5 from "../decorators/decorators.module";
7
+ import * as i6 from "../icon/icon.module";
8
+ export declare class AXPasswordBoxModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXPasswordBoxModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXPasswordBoxModule, [typeof i1.AXPasswordBoxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXButtonModule, typeof i5.AXEditorDecoratorModule, typeof i6.AXIconModule], [typeof i1.AXPasswordBoxComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXPasswordBoxModule>;
12
+ }
@@ -1,10 +1,11 @@
1
- import { ElementRef, ChangeDetectorRef, ViewContainerRef, EventEmitter } from '@angular/core';
1
+ import { ElementRef, ChangeDetectorRef, ViewContainerRef, EventEmitter, NgZone } from '@angular/core';
2
2
  import { AXBaseComponentMixin } from '../base';
3
3
  import { AXPageCloseEvent } from '../page/base-page.class';
4
4
  import { AXLoadingService } from '../loading';
5
5
  import { CdkPortalOutletAttachedRef, Portal } from '@angular/cdk/portal';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class AXPopupComponent extends AXBaseComponentMixin {
8
+ private _zone;
8
9
  private _viewContainerRef;
9
10
  private loadingService;
10
11
  isLoading: boolean;
@@ -19,7 +20,7 @@ export declare class AXPopupComponent extends AXBaseComponentMixin {
19
20
  _selectedPortal: Portal<any>;
20
21
  _footerPortal: Portal<any>;
21
22
  _headerPortal: Portal<any>;
22
- constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _viewContainerRef: ViewContainerRef, loadingService: AXLoadingService);
23
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _zone: NgZone, _viewContainerRef: ViewContainerRef, loadingService: AXLoadingService);
23
24
  onViewInit(): void;
24
25
  _handleAttched(ref: CdkPortalOutletAttachedRef): void;
25
26
  onKeydownHandler(event: KeyboardEvent): void;
@@ -0,0 +1,2 @@
1
+ export * from './radio.component';
2
+ export * from './radio.module';
@@ -0,0 +1,8 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXRadioComponent extends AXBaseComponentMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXRadioComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXRadioComponent, "ax-radio", never, {}, {}, never, ["ax-label", "ax-form-hint", "ax-validation-rule"]>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./radio.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class AXRadioModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXRadioModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXRadioModule, [typeof i1.AXRadioComponent], [typeof i2.CommonModule], [typeof i1.AXRadioComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXRadioModule>;
8
+ }
@@ -18,6 +18,7 @@ export declare class AXSelectBoxComponent extends AXBaseSelectionDropdownMixin i
18
18
  private _checkForLoadData;
19
19
  _onDataLoaded(): void;
20
20
  _handleOnRemoveItemClick(e: MouseEvent, item: any): void;
21
+ _handleBadgeRemove(e: MouseEvent, item: any): void;
21
22
  _handleKeydown(e: KeyboardEvent): void;
22
23
  private _focusItemByNav;
23
24
  private _focusItemByIndex;
@@ -3,8 +3,12 @@ import * as i1 from "./selectbox.component";
3
3
  import * as i2 from "@angular/common";
4
4
  import * as i3 from "../dropdown/dropdown.module";
5
5
  import * as i4 from "@angular/forms";
6
+ import * as i5 from "../checkbox/checkbox.module";
7
+ import * as i6 from "../badge/badge.module";
8
+ import * as i7 from "../decorators/decorators.module";
9
+ import * as i8 from "../icon/icon.module";
6
10
  export declare class AXSelectBoxModule {
7
11
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectBoxModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectBoxModule, [typeof i1.AXSelectBoxComponent], [typeof i2.CommonModule, typeof i3.AXDropdownModule, typeof i4.FormsModule], [typeof i1.AXSelectBoxComponent]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectBoxModule, [typeof i1.AXSelectBoxComponent], [typeof i2.CommonModule, typeof i3.AXDropdownModule, typeof i4.FormsModule, typeof i5.AXCheckBoxModule, typeof i6.AXBadgeModule, typeof i7.AXEditorDecoratorModule, typeof i8.AXIconModule], [typeof i1.AXSelectBoxComponent]>;
9
13
  static ɵinj: i0.ɵɵInjectorDeclaration<AXSelectBoxModule>;
10
14
  }
@@ -1,5 +1,7 @@
1
1
  export * from './tab-strip.component';
2
2
  export * from './tab-view.component';
3
- export * from './tab.component';
3
+ export * from './tabs.component';
4
+ export * from './tab-item.component';
4
5
  export * from './tabs.class';
6
+ export * from './tab-content.directive';
5
7
  export * from './tabs.module';
@@ -0,0 +1,11 @@
1
+ import { TemplateRef, ViewContainerRef } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXTabContentDirective {
4
+ private _viewContainerRef;
5
+ constructor(_viewContainerRef: ViewContainerRef);
6
+ private _portal;
7
+ get portal(): TemplateRef<any>;
8
+ set portal(v: TemplateRef<any>);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXTabContentDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AXTabContentDirective, "[axTabContent]", ["axTabContent"], { "portal": "axTabContent"; }, {}, never>;
11
+ }
@@ -0,0 +1,17 @@
1
+ import { ElementRef, ChangeDetectorRef, TemplateRef, EventEmitter } from '@angular/core';
2
+ import { AXBaseClickableMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXTabItemComponent extends AXBaseClickableMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ text: string;
7
+ width: boolean;
8
+ template: TemplateRef<any>;
9
+ headerTemplate: TemplateRef<any>;
10
+ activeChange: EventEmitter<boolean>;
11
+ private _active;
12
+ get active(): boolean;
13
+ set active(v: boolean);
14
+ private __hostClick;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXTabItemComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXTabItemComponent, "ax-tab-item", never, { "text": "text"; "width": "width"; "active": "active"; }, { "activeChange": "activeChange"; }, ["headerTemplate"], ["ax-prefix", "ax-suffix", "ax-content"]>;
17
+ }
@@ -7,12 +7,13 @@ export declare class AXTabStripComponent extends AXSizableComponentMixin {
7
7
  private _items;
8
8
  get items(): AXTabStripItem[];
9
9
  set items(v: AXTabStripItem[]);
10
- mode: 'default' | 'underline' | 'overline' | 'pills' | 'pills-color';
10
+ mode: 'default' | 'end-line' | 'start-line' | 'pills' | 'pills-color';
11
11
  direction: "horizontal" | "vertical";
12
- fullWidth: boolean;
12
+ fitParent: boolean;
13
13
  minWidth: boolean;
14
14
  onSelectionChanged: EventEmitter<AXTabStripChangedEvent>;
15
15
  _handleClick(tab: AXTabStripItem, index: number): void;
16
+ private get __hostClass();
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<AXTabStripComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<AXTabStripComponent, "ax-tab-strip", never, { "size": "size"; "cssClass": "cssClass"; "items": "items"; "mode": "mode"; "direction": "direction"; "fullWidth": "fullWidth"; "minWidth": "minWidth"; }, { "onSelectionChanged": "onSelectionChanged"; }, never, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXTabStripComponent, "ax-tab-strip", never, { "size": "size"; "items": "items"; "mode": "mode"; "direction": "direction"; "fitParent": "fitParent"; "minWidth": "minWidth"; }, { "onSelectionChanged": "onSelectionChanged"; }, never, ["ax-prefix", "ax-suffix"]>;
18
19
  }
@@ -1,9 +1,9 @@
1
1
  import { ElementRef, ChangeDetectorRef, QueryList } from '@angular/core';
2
2
  import { AXTabStripChangedEvent, AXTabStripItem } from './tabs.class';
3
- import { AXTabStripComponent } from './tab-strip.component';
4
3
  import { AXTabComponent } from './tab.component';
4
+ import { AXBaseComponent } from '../base';
5
5
  import * as i0 from "@angular/core";
6
- export declare class AXTabViewComponent extends AXTabStripComponent {
6
+ export declare class AXTabViewComponent extends AXBaseComponent {
7
7
  _contentTabs: QueryList<AXTabComponent>;
8
8
  _tabs: AXTabStripItem[];
9
9
  constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
@@ -0,0 +1,17 @@
1
+ import { ElementRef, ChangeDetectorRef, QueryList } from '@angular/core';
2
+ import { AXBaseComponent } from '../base';
3
+ import { AXTabItemComponent } from './tab-item.component';
4
+ import { AXTabContentDirective } from './tab-content.directive';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AXTabsComponent extends AXBaseComponent {
7
+ _contentTabs: QueryList<AXTabItemComponent>;
8
+ fitParent: boolean;
9
+ minWidth: boolean;
10
+ content: AXTabContentDirective;
11
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
12
+ onRenderCssClass(): void;
13
+ onViewInit(): void;
14
+ _handleSelectionChanged(e: AXTabItemComponent): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXTabsComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXTabsComponent, "ax-tabs", never, { "fitParent": "fitParent"; "minWidth": "minWidth"; "content": "content"; }, {}, ["_contentTabs"], ["ax-tab-item"]>;
17
+ }
@@ -1,10 +1,12 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./tab-view.component";
3
- import * as i2 from "./tab-strip.component";
4
- import * as i3 from "./tab.component";
2
+ import * as i1 from "./tabs.component";
3
+ import * as i2 from "./tab-item.component";
4
+ import * as i3 from "./tab-content.directive";
5
5
  import * as i4 from "@angular/common";
6
+ import * as i5 from "@angular/cdk/portal";
7
+ import * as i6 from "../decorators/decorators.module";
6
8
  export declare class AXTabsModule {
7
9
  static ɵfac: i0.ɵɵFactoryDeclaration<AXTabsModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXTabsModule, [typeof i1.AXTabViewComponent, typeof i2.AXTabStripComponent, typeof i3.AXTabComponent], [typeof i4.CommonModule], [typeof i1.AXTabViewComponent, typeof i2.AXTabStripComponent, typeof i3.AXTabComponent]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXTabsModule, [typeof i1.AXTabsComponent, typeof i2.AXTabItemComponent, typeof i3.AXTabContentDirective], [typeof i4.CommonModule, typeof i5.PortalModule, typeof i6.AXEditorDecoratorModule], [typeof i1.AXTabsComponent, typeof i2.AXTabItemComponent, typeof i3.AXTabContentDirective]>;
9
11
  static ɵinj: i0.ɵɵInjectorDeclaration<AXTabsModule>;
10
12
  }
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
- "name": "@acorex/components",
3
- "version": "5.0.6",
4
- "peerDependencies": {
5
- "@angular/common": "^12.2.6",
6
- "@angular/core": "^12.2.6"
7
- },
8
- "dependencies": {
9
- "@splidejs/splide": "^2.4.21",
10
- "ngx-mask": "^12.0.0",
11
- "tslib": "^2.3.0"
12
- },
13
- "main": "bundles/acorex-components.umd.js",
14
- "module": "fesm2015/acorex-components.js",
15
- "es2015": "fesm2015/acorex-components.js",
16
- "esm2015": "esm2015/acorex-components.js",
17
- "fesm2015": "fesm2015/acorex-components.js",
18
- "typings": "acorex-components.d.ts",
19
- "sideEffects": false
2
+ "name": "@acorex/components",
3
+ "version": "5.0.10",
4
+ "peerDependencies": {
5
+ "@angular/common": "^12.2.6",
6
+ "@angular/core": "^12.2.6"
7
+ },
8
+ "dependencies": {
9
+ "@splidejs/splide": "^2.4.21",
10
+ "ngx-mask": "^12.0.0",
11
+ "tslib": "^2.3.0"
12
+ },
13
+ "main": "bundles/acorex-components.umd.js",
14
+ "module": "fesm2015/acorex-components.js",
15
+ "es2015": "fesm2015/acorex-components.js",
16
+ "esm2015": "esm2015/acorex-components.js",
17
+ "fesm2015": "fesm2015/acorex-components.js",
18
+ "typings": "acorex-components.d.ts",
19
+ "sideEffects": false
20
20
  }
package/public-api.d.ts CHANGED
@@ -4,6 +4,7 @@
4
4
  */
5
5
  export * from "./lib/alert";
6
6
  export * from "./lib/avatar";
7
+ export * from "./lib/badge";
7
8
  export * from "./lib/base";
8
9
  export * from "./lib/button";
9
10
  export * from "./lib/calendar";
@@ -22,9 +23,11 @@ export * from "./lib/label";
22
23
  export * from "./lib/loading";
23
24
  export * from "./lib/number-box";
24
25
  export * from "./lib/page";
26
+ export * from "./lib/password-box";
25
27
  export * from "./lib/popover";
26
- export * from "./lib/range-slider";
27
28
  export * from "./lib/popup";
29
+ export * from "./lib/radio";
30
+ export * from "./lib/range-slider";
28
31
  export * from "./lib/selectbox";
29
32
  export * from "./lib/selection-list";
30
33
  export * from "./lib/side-menu";