@acorex/components 20.4.13 → 20.4.15

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/fab/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @acorex/components/kbd
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/kbd`.
package/fab/index.d.ts ADDED
@@ -0,0 +1,26 @@
1
+ import * as _angular_core from '@angular/core';
2
+ import { AXClickEvent } from '@acorex/cdk/common';
3
+
4
+ declare class AXFabItemComponent {
5
+ label: _angular_core.InputSignal<string>;
6
+ /**
7
+ * Fires each time the user clicks the button.
8
+ * @event
9
+ */
10
+ onClick: _angular_core.OutputEmitterRef<AXClickEvent>;
11
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXFabItemComponent, never>;
12
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXFabItemComponent, "ax-fab-item", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; }, never, ["ax-icon"], true, never>;
13
+ }
14
+
15
+ declare class AXFabComponent {
16
+ label: _angular_core.InputSignal<string>;
17
+ /**
18
+ * Fires each time the user clicks the button.
19
+ * @event
20
+ */
21
+ onClick: _angular_core.OutputEmitterRef<AXClickEvent>;
22
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXFabComponent, never>;
23
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXFabComponent, "ax-fab", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; }, never, ["ax-icon", "ax-fab-item"], true, never>;
24
+ }
25
+
26
+ export { AXFabComponent, AXFabItemComponent };
@@ -875,7 +875,7 @@ class AXCodeEditorComponent extends MXValueComponent {
875
875
  <ng-content select="ax-validation-rule"> </ng-content>
876
876
  </div>
877
877
  <div class="ax-error-container"></div>
878
- `, isInline: true, styles: [":host{display:block;width:100%;height:100%}:host.ax-disable{opacity:.5;cursor:not-allowed}:host>.ax-editor-container{height:100%;width:100%;align-items:start;--ax-comp-editor-space-start-size: 0;--ax-comp-editor-space-end-size: 0;--ax-comp-editor-border-width: 1px}:host .ax-code-editor-container{display:flex;flex-direction:column;height:100%;width:100%}:host .cm-editor{width:100%;max-width:100%;overflow:auto}:host .cm-editor.cm-focused{outline:none}:host .ax-error-message{padding-inline:.5rem}\n"] }); }
878
+ `, isInline: true, styles: [":host{display:block;width:100%;height:100%}:host.ax-disable{opacity:.5;cursor:not-allowed}:host>.ax-editor-container{height:100%;width:100%;padding:.5rem;align-items:start;--ax-comp-editor-space-start-size: 0;--ax-comp-editor-space-end-size: 0;--ax-comp-editor-border-width: 1px}:host .ax-code-editor-container{display:flex;flex-direction:column;height:100%;width:100%}:host .cm-editor{width:100%;max-width:100%;overflow:auto}:host .cm-editor.cm-focused{outline:none}:host .ax-error-message{padding-inline:.5rem}\n"] }); }
879
879
  }
880
880
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: AXCodeEditorComponent, decorators: [{
881
881
  type: Component,
@@ -904,7 +904,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
904
904
  <ng-content select="ax-validation-rule"> </ng-content>
905
905
  </div>
906
906
  <div class="ax-error-container"></div>
907
- `, styles: [":host{display:block;width:100%;height:100%}:host.ax-disable{opacity:.5;cursor:not-allowed}:host>.ax-editor-container{height:100%;width:100%;align-items:start;--ax-comp-editor-space-start-size: 0;--ax-comp-editor-space-end-size: 0;--ax-comp-editor-border-width: 1px}:host .ax-code-editor-container{display:flex;flex-direction:column;height:100%;width:100%}:host .cm-editor{width:100%;max-width:100%;overflow:auto}:host .cm-editor.cm-focused{outline:none}:host .ax-error-message{padding-inline:.5rem}\n"] }]
907
+ `, styles: [":host{display:block;width:100%;height:100%}:host.ax-disable{opacity:.5;cursor:not-allowed}:host>.ax-editor-container{height:100%;width:100%;padding:.5rem;align-items:start;--ax-comp-editor-space-start-size: 0;--ax-comp-editor-space-end-size: 0;--ax-comp-editor-border-width: 1px}:host .ax-code-editor-container{display:flex;flex-direction:column;height:100%;width:100%}:host .cm-editor{width:100%;max-width:100%;overflow:auto}:host .cm-editor.cm-focused{outline:none}:host .ax-error-message{padding-inline:.5rem}\n"] }]
908
908
  }], ctorParameters: () => [] });
909
909
 
910
910
  class AXCodeEditorModule {