@acorex/components 20.2.21 → 21.0.0-next.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.
- package/drawer/README.md +2 -2
 - package/drawer/index.d.ts +32 -57
 - package/drawer-legacy/README.md +3 -0
 - package/drawer-legacy/index.d.ts +86 -0
 - package/fesm2022/acorex-components-color-palette.mjs +1 -1
 - package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
 - package/fesm2022/acorex-components-data-pager.mjs +1 -1
 - package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
 - package/fesm2022/acorex-components-drawer-legacy.mjs +218 -0
 - package/fesm2022/acorex-components-drawer-legacy.mjs.map +1 -0
 - package/fesm2022/acorex-components-drawer.mjs +58 -143
 - package/fesm2022/acorex-components-drawer.mjs.map +1 -1
 - package/fesm2022/acorex-components-file-explorer.mjs +1 -1
 - package/fesm2022/acorex-components-file-explorer.mjs.map +1 -1
 - package/fesm2022/acorex-components-number-box-legacy.mjs +412 -0
 - package/fesm2022/acorex-components-number-box-legacy.mjs.map +1 -0
 - package/fesm2022/acorex-components-number-box.mjs +97 -310
 - package/fesm2022/acorex-components-number-box.mjs.map +1 -1
 - package/fesm2022/acorex-components-query-builder.mjs +1 -1
 - package/fesm2022/acorex-components-query-builder.mjs.map +1 -1
 - package/fesm2022/acorex-components-rest-api-generator.mjs +2 -2
 - package/fesm2022/acorex-components-rest-api-generator.mjs.map +1 -1
 - package/fesm2022/acorex-components-rrule.mjs +28 -28
 - package/fesm2022/acorex-components-rrule.mjs.map +1 -1
 - package/fesm2022/acorex-components-selection-list-legacy.mjs +220 -0
 - package/fesm2022/acorex-components-selection-list-legacy.mjs.map +1 -0
 - package/fesm2022/acorex-components-selection-list.mjs +14 -69
 - package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
 - package/number-box/README.md +2 -2
 - package/number-box/index.d.ts +31 -171
 - package/number-box-legacy/README.md +3 -0
 - package/number-box-legacy/index.d.ts +191 -0
 - package/package.json +20 -20
 - package/rrule/index.d.ts +3 -3
 - package/selection-list/README.md +2 -2
 - package/selection-list/index.d.ts +16 -57
 - package/selection-list-legacy/README.md +3 -0
 - package/selection-list-legacy/index.d.ts +93 -0
 - package/drawer-2/README.md +0 -3
 - package/drawer-2/index.d.ts +0 -62
 - package/fesm2022/acorex-components-drawer-2.mjs +0 -134
 - package/fesm2022/acorex-components-drawer-2.mjs.map +0 -1
 - package/fesm2022/acorex-components-number-box-2.mjs +0 -183
 - package/fesm2022/acorex-components-number-box-2.mjs.map +0 -1
 - package/fesm2022/acorex-components-selection-list-2.mjs +0 -165
 - package/fesm2022/acorex-components-selection-list-2.mjs.map +0 -1
 - package/number-box-2/README.md +0 -3
 - package/number-box-2/index.d.ts +0 -41
 - package/selection-list-2/README.md +0 -3
 - package/selection-list-2/index.d.ts +0 -52
 
    
        package/drawer/README.md
    CHANGED
    
    | 
         @@ -1,3 +1,3 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # @acorex/components/drawer
         
     | 
| 
      
 1 
     | 
    
         
            +
            # @acorex/components/drawer-2
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
     | 
    
         
            -
            Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/drawer`.
         
     | 
| 
      
 3 
     | 
    
         
            +
            Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/drawer-2`.
         
     | 
    
        package/drawer/index.d.ts
    CHANGED
    
    | 
         @@ -1,86 +1,61 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { MXBaseComponent } from '@acorex/cdk/common';
         
     | 
| 
       2 
     | 
    
         
            -
            import * as  
     | 
| 
       3 
     | 
    
         
            -
            import  
     | 
| 
       4 
     | 
    
         
            -
            import  
     | 
| 
      
 1 
     | 
    
         
            +
            import { MXBaseComponent, AXClickEvent } from '@acorex/cdk/common';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import * as _angular_core from '@angular/core';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import * as i1 from '@acorex/cdk/drawer';
         
     | 
| 
      
 4 
     | 
    
         
            +
            import { AXDrawerLocation, AXDrawerMode } from '@acorex/cdk/drawer';
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            /**
         
     | 
| 
       7 
7 
     | 
    
         
             
             * A container component that organizes and positions drawer components.
         
     | 
| 
       8 
8 
     | 
    
         
             
             * @category component
         
     | 
| 
       9 
9 
     | 
    
         
             
             */
         
     | 
| 
       10 
10 
     | 
    
         
             
            declare class AXDrawerContainerComponent extends MXBaseComponent {
         
     | 
| 
       11 
     | 
    
         
            -
                private 
     | 
| 
       12 
     | 
    
         
            -
                 
     | 
| 
       13 
     | 
    
         
            -
                static  
     | 
| 
       14 
     | 
    
         
            -
                static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerContainerComponent, "ax-drawer-container", never, {}, {}, never, ["ax-drawer", "ax-content"], true, never>;
         
     | 
| 
      
 11 
     | 
    
         
            +
                #private;
         
     | 
| 
      
 12 
     | 
    
         
            +
                static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXDrawerContainerComponent, never>;
         
     | 
| 
      
 13 
     | 
    
         
            +
                static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXDrawerContainerComponent, "ax-drawer-container", never, {}, {}, never, ["ax-drawer", "ax-content"], true, [{ directive: typeof i1.AXDrawerContainerDirective; inputs: {}; outputs: {}; }]>;
         
     | 
| 
       15 
14 
     | 
    
         
             
            }
         
     | 
| 
       16 
15 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
            type AXDrawerMode = 'push' | 'overlay';
         
     | 
| 
       18 
     | 
    
         
            -
            type AXDrawerLocation = 'start' | 'end';
         
     | 
| 
       19 
16 
     | 
    
         
             
            /**
         
     | 
| 
       20 
17 
     | 
    
         
             
             * A component that represents a drawer with header and content sections.
         
     | 
| 
       21 
18 
     | 
    
         
             
             *
         
     | 
| 
       22 
19 
     | 
    
         
             
             * @category Components
         
     | 
| 
       23 
20 
     | 
    
         
             
             */
         
     | 
| 
       24 
     | 
    
         
            -
            declare class AXDrawerComponent extends MXBaseComponent  
     | 
| 
      
 21 
     | 
    
         
            +
            declare class AXDrawerComponent extends MXBaseComponent {
         
     | 
| 
       25 
22 
     | 
    
         
             
                #private;
         
     | 
| 
       26 
     | 
    
         
            -
                location:  
     | 
| 
       27 
     | 
    
         
            -
                showBackdrop:  
     | 
| 
       28 
     | 
    
         
            -
                mode:  
     | 
| 
       29 
     | 
    
         
            -
                 
     | 
| 
       30 
     | 
    
         
            -
                 
     | 
| 
       31 
     | 
    
         
            -
                 
     | 
| 
       32 
     | 
    
         
            -
                 
     | 
| 
       33 
     | 
    
         
            -
                 
     | 
| 
       34 
     | 
    
         
            -
                 
     | 
| 
       35 
     | 
    
         
            -
                private  
     | 
| 
       36 
     | 
    
         
            -
                 
     | 
| 
       37 
     | 
    
         
            -
             
     | 
| 
      
 23 
     | 
    
         
            +
                readonly location: _angular_core.InputSignal<AXDrawerLocation>;
         
     | 
| 
      
 24 
     | 
    
         
            +
                readonly showBackdrop: _angular_core.InputSignal<boolean>;
         
     | 
| 
      
 25 
     | 
    
         
            +
                readonly mode: _angular_core.InputSignal<AXDrawerMode>;
         
     | 
| 
      
 26 
     | 
    
         
            +
                readonly transition: _angular_core.InputSignal<number>;
         
     | 
| 
      
 27 
     | 
    
         
            +
                readonly closeOnBackdropClick: _angular_core.InputSignal<boolean>;
         
     | 
| 
      
 28 
     | 
    
         
            +
                readonly backdropClass: _angular_core.InputSignal<string>;
         
     | 
| 
      
 29 
     | 
    
         
            +
                readonly collapsed: _angular_core.InputSignal<boolean>;
         
     | 
| 
      
 30 
     | 
    
         
            +
                onBackdropClick: _angular_core.OutputEmitterRef<AXClickEvent>;
         
     | 
| 
      
 31 
     | 
    
         
            +
                collapsedStateChanged: _angular_core.OutputEmitterRef<boolean>;
         
     | 
| 
      
 32 
     | 
    
         
            +
                private drawerItem;
         
     | 
| 
      
 33 
     | 
    
         
            +
                /**
         
     | 
| 
      
 34 
     | 
    
         
            +
                 * Toggles the drawer state between open and closed.
         
     | 
| 
       38 
35 
     | 
    
         
             
                 *
         
     | 
| 
       39 
     | 
    
         
            -
                 * 
     | 
| 
       40 
     | 
    
         
            -
                 */
         
     | 
| 
       41 
     | 
    
         
            -
                ngAfterContentInit(): void;
         
     | 
| 
       42 
     | 
    
         
            -
                /**
         
     | 
| 
       43 
     | 
    
         
            -
                 *  @ignore
         
     | 
| 
       44 
     | 
    
         
            -
                 */
         
     | 
| 
       45 
     | 
    
         
            -
                ngDoCheck(): void;
         
     | 
| 
       46 
     | 
    
         
            -
                /**
         
     | 
| 
       47 
     | 
    
         
            -
                 *  @ignore
         
     | 
| 
       48 
     | 
    
         
            -
                 */
         
     | 
| 
       49 
     | 
    
         
            -
                private _detectBoundingSize;
         
     | 
| 
       50 
     | 
    
         
            -
                /**
         
     | 
| 
       51 
     | 
    
         
            -
                 * Toggles the collapsed state of the drawer.
         
     | 
| 
      
 36 
     | 
    
         
            +
                 * @returns void - No return value. The drawer state is toggled.
         
     | 
| 
       52 
37 
     | 
    
         
             
                 */
         
     | 
| 
       53 
38 
     | 
    
         
             
                toggle(): void;
         
     | 
| 
       54 
39 
     | 
    
         
             
                /**
         
     | 
| 
       55 
     | 
    
         
            -
                 *  
     | 
| 
       56 
     | 
    
         
            -
                 * 
     | 
| 
      
 40 
     | 
    
         
            +
                 * Closes the drawer.
         
     | 
| 
      
 41 
     | 
    
         
            +
                 *
         
     | 
| 
      
 42 
     | 
    
         
            +
                 * @returns void - No return value. The drawer is collapsed.
         
     | 
| 
       57 
43 
     | 
    
         
             
                 */
         
     | 
| 
       58 
44 
     | 
    
         
             
                close(): void;
         
     | 
| 
       59 
45 
     | 
    
         
             
                /**
         
     | 
| 
       60 
     | 
    
         
            -
                 *  
     | 
| 
      
 46 
     | 
    
         
            +
                 * Opens the drawer.
         
     | 
| 
      
 47 
     | 
    
         
            +
                 *
         
     | 
| 
      
 48 
     | 
    
         
            +
                 * @returns void - No return value. The drawer is expanded.
         
     | 
| 
       61 
49 
     | 
    
         
             
                 */
         
     | 
| 
       62 
50 
     | 
    
         
             
                open(): void;
         
     | 
| 
       63 
     | 
    
         
            -
                 
     | 
| 
       64 
     | 
    
         
            -
             
     | 
| 
       65 
     | 
    
         
            -
                 */
         
     | 
| 
       66 
     | 
    
         
            -
                private _addBackdrop;
         
     | 
| 
       67 
     | 
    
         
            -
                /**
         
     | 
| 
       68 
     | 
    
         
            -
                 *  @ignore
         
     | 
| 
       69 
     | 
    
         
            -
                 */
         
     | 
| 
       70 
     | 
    
         
            -
                private _removeBackdrop;
         
     | 
| 
       71 
     | 
    
         
            -
                /**
         
     | 
| 
       72 
     | 
    
         
            -
                 *  @ignore
         
     | 
| 
       73 
     | 
    
         
            -
                 */
         
     | 
| 
       74 
     | 
    
         
            -
                private get __hostClass();
         
     | 
| 
       75 
     | 
    
         
            -
                static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerComponent, never>;
         
     | 
| 
       76 
     | 
    
         
            -
                static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerComponent, "ax-drawer", never, { "location": { "alias": "location"; "required": false; "isSignal": true; }; "showBackdrop": { "alias": "showBackdrop"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "closeOthers": { "alias": "closeOthers"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, { "location": "locationChange"; "mode": "modeChange"; "collapsed": "collapsedChange"; }, never, ["ax-header", "ax-content"], true, never>;
         
     | 
| 
      
 51 
     | 
    
         
            +
                static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXDrawerComponent, never>;
         
     | 
| 
      
 52 
     | 
    
         
            +
                static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXDrawerComponent, "ax-drawer", never, { "location": { "alias": "location"; "required": false; "isSignal": true; }; "showBackdrop": { "alias": "showBackdrop"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; "isSignal": true; }; "backdropClass": { "alias": "backdropClass"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, { "onBackdropClick": "onBackdropClick"; "collapsedStateChanged": "collapsedStateChanged"; }, never, ["ax-header", "ax-content"], true, [{ directive: typeof i1.AXDrawerItemDirective; inputs: {}; outputs: {}; }]>;
         
     | 
| 
       77 
53 
     | 
    
         
             
            }
         
     | 
| 
       78 
54 
     | 
    
         | 
| 
       79 
55 
     | 
    
         
             
            declare class AXDrawerModule {
         
     | 
| 
       80 
     | 
    
         
            -
                static ɵfac:  
     | 
| 
       81 
     | 
    
         
            -
                static ɵmod:  
     | 
| 
       82 
     | 
    
         
            -
                static ɵinj:  
     | 
| 
      
 56 
     | 
    
         
            +
                static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXDrawerModule, never>;
         
     | 
| 
      
 57 
     | 
    
         
            +
                static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXDrawerModule, never, [typeof AXDrawerComponent, typeof AXDrawerContainerComponent], [typeof AXDrawerComponent, typeof AXDrawerContainerComponent]>;
         
     | 
| 
      
 58 
     | 
    
         
            +
                static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXDrawerModule>;
         
     | 
| 
       83 
59 
     | 
    
         
             
            }
         
     | 
| 
       84 
60 
     | 
    
         | 
| 
       85 
61 
     | 
    
         
             
            export { AXDrawerComponent, AXDrawerContainerComponent, AXDrawerModule };
         
     | 
| 
       86 
     | 
    
         
            -
            export type { AXDrawerLocation, AXDrawerMode };
         
     | 
| 
         @@ -0,0 +1,86 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { MXBaseComponent } from '@acorex/cdk/common';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import * as i0 from '@angular/core';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import { AfterContentInit, DoCheck } from '@angular/core';
         
     | 
| 
      
 4 
     | 
    
         
            +
            import * as i1 from '@angular/common';
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            /**
         
     | 
| 
      
 7 
     | 
    
         
            +
             * A container component that organizes and positions drawer components.
         
     | 
| 
      
 8 
     | 
    
         
            +
             * @category component
         
     | 
| 
      
 9 
     | 
    
         
            +
             */
         
     | 
| 
      
 10 
     | 
    
         
            +
            declare class AXDrawerLegacyContainerComponent extends MXBaseComponent {
         
     | 
| 
      
 11 
     | 
    
         
            +
                private service;
         
     | 
| 
      
 12 
     | 
    
         
            +
                constructor();
         
     | 
| 
      
 13 
     | 
    
         
            +
                static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerLegacyContainerComponent, never>;
         
     | 
| 
      
 14 
     | 
    
         
            +
                static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerLegacyContainerComponent, "ax-drawer-legacy-container", never, {}, {}, never, ["ax-drawer", "ax-content"], true, never>;
         
     | 
| 
      
 15 
     | 
    
         
            +
            }
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            type AXDrawerMode = 'push' | 'overlay';
         
     | 
| 
      
 18 
     | 
    
         
            +
            type AXDrawerLocation = 'start' | 'end';
         
     | 
| 
      
 19 
     | 
    
         
            +
            /**
         
     | 
| 
      
 20 
     | 
    
         
            +
             * A component that represents a drawer with header and content sections.
         
     | 
| 
      
 21 
     | 
    
         
            +
             *
         
     | 
| 
      
 22 
     | 
    
         
            +
             * @category Components
         
     | 
| 
      
 23 
     | 
    
         
            +
             */
         
     | 
| 
      
 24 
     | 
    
         
            +
            declare class AXDrawerLegacyComponent extends MXBaseComponent implements AfterContentInit, DoCheck {
         
     | 
| 
      
 25 
     | 
    
         
            +
                #private;
         
     | 
| 
      
 26 
     | 
    
         
            +
                location: i0.ModelSignal<AXDrawerLocation>;
         
     | 
| 
      
 27 
     | 
    
         
            +
                showBackdrop: i0.InputSignal<boolean>;
         
     | 
| 
      
 28 
     | 
    
         
            +
                mode: i0.ModelSignal<AXDrawerMode>;
         
     | 
| 
      
 29 
     | 
    
         
            +
                closeOthers: i0.InputSignal<boolean>;
         
     | 
| 
      
 30 
     | 
    
         
            +
                collapsed: i0.ModelSignal<boolean>;
         
     | 
| 
      
 31 
     | 
    
         
            +
                private backdropElement;
         
     | 
| 
      
 32 
     | 
    
         
            +
                protected loaded: i0.WritableSignal<boolean>;
         
     | 
| 
      
 33 
     | 
    
         
            +
                private service;
         
     | 
| 
      
 34 
     | 
    
         
            +
                private _zone;
         
     | 
| 
      
 35 
     | 
    
         
            +
                private document;
         
     | 
| 
      
 36 
     | 
    
         
            +
                private platformID;
         
     | 
| 
      
 37 
     | 
    
         
            +
                /**
         
     | 
| 
      
 38 
     | 
    
         
            +
                 *
         
     | 
| 
      
 39 
     | 
    
         
            +
                 *  @ignore
         
     | 
| 
      
 40 
     | 
    
         
            +
                 */
         
     | 
| 
      
 41 
     | 
    
         
            +
                ngAfterContentInit(): void;
         
     | 
| 
      
 42 
     | 
    
         
            +
                /**
         
     | 
| 
      
 43 
     | 
    
         
            +
                 *  @ignore
         
     | 
| 
      
 44 
     | 
    
         
            +
                 */
         
     | 
| 
      
 45 
     | 
    
         
            +
                ngDoCheck(): void;
         
     | 
| 
      
 46 
     | 
    
         
            +
                /**
         
     | 
| 
      
 47 
     | 
    
         
            +
                 *  @ignore
         
     | 
| 
      
 48 
     | 
    
         
            +
                 */
         
     | 
| 
      
 49 
     | 
    
         
            +
                private _detectBoundingSize;
         
     | 
| 
      
 50 
     | 
    
         
            +
                /**
         
     | 
| 
      
 51 
     | 
    
         
            +
                 * Toggles the collapsed state of the drawer.
         
     | 
| 
      
 52 
     | 
    
         
            +
                 */
         
     | 
| 
      
 53 
     | 
    
         
            +
                toggle(): void;
         
     | 
| 
      
 54 
     | 
    
         
            +
                /**
         
     | 
| 
      
 55 
     | 
    
         
            +
                 * Collapses the drawer.
         
     | 
| 
      
 56 
     | 
    
         
            +
                 * @ignore
         
     | 
| 
      
 57 
     | 
    
         
            +
                 */
         
     | 
| 
      
 58 
     | 
    
         
            +
                close(): void;
         
     | 
| 
      
 59 
     | 
    
         
            +
                /**
         
     | 
| 
      
 60 
     | 
    
         
            +
                 * Expands the drawer.
         
     | 
| 
      
 61 
     | 
    
         
            +
                 */
         
     | 
| 
      
 62 
     | 
    
         
            +
                open(): void;
         
     | 
| 
      
 63 
     | 
    
         
            +
                /**
         
     | 
| 
      
 64 
     | 
    
         
            +
                 *  @ignore
         
     | 
| 
      
 65 
     | 
    
         
            +
                 */
         
     | 
| 
      
 66 
     | 
    
         
            +
                private _addBackdrop;
         
     | 
| 
      
 67 
     | 
    
         
            +
                /**
         
     | 
| 
      
 68 
     | 
    
         
            +
                 *  @ignore
         
     | 
| 
      
 69 
     | 
    
         
            +
                 */
         
     | 
| 
      
 70 
     | 
    
         
            +
                private _removeBackdrop;
         
     | 
| 
      
 71 
     | 
    
         
            +
                /**
         
     | 
| 
      
 72 
     | 
    
         
            +
                 *  @ignore
         
     | 
| 
      
 73 
     | 
    
         
            +
                 */
         
     | 
| 
      
 74 
     | 
    
         
            +
                private get __hostClass();
         
     | 
| 
      
 75 
     | 
    
         
            +
                static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerLegacyComponent, never>;
         
     | 
| 
      
 76 
     | 
    
         
            +
                static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerLegacyComponent, "ax-drawer-legacy", never, { "location": { "alias": "location"; "required": false; "isSignal": true; }; "showBackdrop": { "alias": "showBackdrop"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "closeOthers": { "alias": "closeOthers"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, { "location": "locationChange"; "mode": "modeChange"; "collapsed": "collapsedChange"; }, never, ["ax-header", "ax-content"], true, never>;
         
     | 
| 
      
 77 
     | 
    
         
            +
            }
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
            declare class AXDrawerLegacyModule {
         
     | 
| 
      
 80 
     | 
    
         
            +
                static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerLegacyModule, never>;
         
     | 
| 
      
 81 
     | 
    
         
            +
                static ɵmod: i0.ɵɵNgModuleDeclaration<AXDrawerLegacyModule, never, [typeof i1.CommonModule, typeof AXDrawerLegacyComponent, typeof AXDrawerLegacyContainerComponent], [typeof AXDrawerLegacyComponent, typeof AXDrawerLegacyContainerComponent]>;
         
     | 
| 
      
 82 
     | 
    
         
            +
                static ɵinj: i0.ɵɵInjectorDeclaration<AXDrawerLegacyModule>;
         
     | 
| 
      
 83 
     | 
    
         
            +
            }
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
            export { AXDrawerLegacyComponent, AXDrawerLegacyContainerComponent, AXDrawerLegacyModule };
         
     | 
| 
      
 86 
     | 
    
         
            +
            export type { AXDrawerLocation, AXDrawerMode };
         
     | 
| 
         @@ -447,7 +447,7 @@ class AXColorPaletteInputComponent extends MXBaseComponent { 
     | 
|
| 
       447 
447 
     | 
    
         
             
                        },
         
     | 
| 
       448 
448 
     | 
    
         
             
                        AXUnsubscriber,
         
     | 
| 
       449 
449 
     | 
    
         
             
                        { provide: AXComponent, useExisting: AXColorPaletteInputComponent },
         
     | 
| 
       450 
     | 
    
         
            -
                    ], usesInheritance: true, ngImport: i0, template: "<div class=\"palette-inputs ax-sm\">\n  <div class=\"select-box-container\">\n    <ax-select-box\n      [dataSource]=\"['hex', 'rgba']\"\n      [(ngModel)]=\"_colorMode\"\n      (ngModelChange)=\"_handleChangeInputMode()\"\n      [disabled]=\"_parent.disabled\"\n    >\n    </ax-select-box>\n  </div>\n  @switch (_colorMode) {\n    @case ('hex') {\n      <div>\n        <ax-text-box\n          [ngModel]=\"_hex\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          [state]=\"isValid ? 'clear' : 'error'\"\n          (onValueChanged)=\"_handleHEXAValueChanged($event)\"\n          [mask-options]=\"_hexMaskOptions\"\n        >\n        </ax-text-box>\n      </div>\n    }\n    @case ('rgba') {\n      <div>\n        <ax-number-box\n          name=\"r\"\n          [minValue]=\"0\"\n          [maxValue]=\"255\"\n          [ngModel]=\"_rgba.r\"\n          [showSpinButtons]=\"false\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          (onValueChanged)=\"_handleRGBAValueChanged($event)\"\n        >\n        </ax-number-box>\n      </div>\n      <div>\n        <ax-number-box\n          name=\"g\"\n          [minValue]=\"0\"\n          [maxValue]=\"255\"\n          [ngModel]=\"_rgba.g\"\n          [showSpinButtons]=\"false\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          (onValueChanged)=\"_handleRGBAValueChanged($event)\"\n        >\n        </ax-number-box>\n      </div>\n      <div>\n        <ax-number-box\n          name=\"b\"\n          [minValue]=\"0\"\n          [maxValue]=\"255\"\n          [ngModel]=\"_rgba.b\"\n          [showSpinButtons]=\"false\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          (onValueChanged)=\"_handleRGBAValueChanged($event)\"\n        >\n        </ax-number-box>\n      </div>\n      <div>\n        <ax-number-box\n          name=\"a\"\n          [minValue]=\"0\"\n          [maxValue]=\"1\"\n          [ngModel]=\"_rgba.a\"\n          [decimals]=\"2\"\n          [step]=\"0.1\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          [showSpinButtons]=\"false\"\n          (onValueChanged)=\"_handleRGBAValueChanged($event)\"\n        >\n        </ax-number-box>\n      </div>\n    }\n  }\n</div>\n", styles: [".ax-bold{font-weight:700}\n"], dependencies: [{ kind: "component", type: AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "disabledField", "textTemplate", "selectedItems", "isItemTruncated", "showItemTooltip", "dataSource", "minRecordsForSearch", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth", "searchBoxAutoFocus"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed", "onItemSelected", "onItemClick"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "component", type: AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", " 
     | 
| 
      
 450 
     | 
    
         
            +
                    ], usesInheritance: true, ngImport: i0, template: "<div class=\"palette-inputs ax-sm\">\n  <div class=\"select-box-container\">\n    <ax-select-box\n      [dataSource]=\"['hex', 'rgba']\"\n      [(ngModel)]=\"_colorMode\"\n      (ngModelChange)=\"_handleChangeInputMode()\"\n      [disabled]=\"_parent.disabled\"\n    >\n    </ax-select-box>\n  </div>\n  @switch (_colorMode) {\n    @case ('hex') {\n      <div>\n        <ax-text-box\n          [ngModel]=\"_hex\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          [state]=\"isValid ? 'clear' : 'error'\"\n          (onValueChanged)=\"_handleHEXAValueChanged($event)\"\n          [mask-options]=\"_hexMaskOptions\"\n        >\n        </ax-text-box>\n      </div>\n    }\n    @case ('rgba') {\n      <div>\n        <ax-number-box\n          name=\"r\"\n          [minValue]=\"0\"\n          [maxValue]=\"255\"\n          [ngModel]=\"_rgba.r\"\n          [showSpinButtons]=\"false\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          (onValueChanged)=\"_handleRGBAValueChanged($event)\"\n        >\n        </ax-number-box>\n      </div>\n      <div>\n        <ax-number-box\n          name=\"g\"\n          [minValue]=\"0\"\n          [maxValue]=\"255\"\n          [ngModel]=\"_rgba.g\"\n          [showSpinButtons]=\"false\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          (onValueChanged)=\"_handleRGBAValueChanged($event)\"\n        >\n        </ax-number-box>\n      </div>\n      <div>\n        <ax-number-box\n          name=\"b\"\n          [minValue]=\"0\"\n          [maxValue]=\"255\"\n          [ngModel]=\"_rgba.b\"\n          [showSpinButtons]=\"false\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          (onValueChanged)=\"_handleRGBAValueChanged($event)\"\n        >\n        </ax-number-box>\n      </div>\n      <div>\n        <ax-number-box\n          name=\"a\"\n          [minValue]=\"0\"\n          [maxValue]=\"1\"\n          [ngModel]=\"_rgba.a\"\n          [decimals]=\"2\"\n          [step]=\"0.1\"\n          [disabled]=\"_parent.disabled\"\n          [readonly]=\"_parent.readonly\"\n          [showSpinButtons]=\"false\"\n          (onValueChanged)=\"_handleRGBAValueChanged($event)\"\n        >\n        </ax-number-box>\n      </div>\n    }\n  }\n</div>\n", styles: [".ax-bold{font-weight:700}\n"], dependencies: [{ kind: "component", type: AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "disabledField", "textTemplate", "selectedItems", "isItemTruncated", "showItemTooltip", "dataSource", "minRecordsForSearch", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth", "searchBoxAutoFocus"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed", "onItemSelected", "onItemClick"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "component", type: AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "minValue", "maxValue", "showSpinButtons", "thousandsSeparator", "decimals", "changeOnScroll", "step"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress", "thousandsSeparatorChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
         
     | 
| 
       451 
451 
     | 
    
         
             
            }
         
     | 
| 
       452 
452 
     | 
    
         
             
            i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: AXColorPaletteInputComponent, decorators: [{
         
     | 
| 
       453 
453 
     | 
    
         
             
                        type: Component,
         
     |