@ethlete/components 0.1.0-next.6 → 0.1.0-next.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethlete/components",
3
- "version": "0.1.0-next.6",
3
+ "version": "0.1.0-next.7",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
@@ -959,13 +959,8 @@ declare class GridItemDirective {
959
959
  currentRow: _angular_core.Signal<number>;
960
960
  currentColSpan: _angular_core.Signal<number>;
961
961
  currentRowSpan: _angular_core.Signal<number>;
962
- hostStyles: {
963
- remove: (tokens: string) => void;
964
- removeMany: (tokens: string[]) => void;
965
- has: (tokens: string) => boolean;
966
- push: (tokens: string, signal: _angular_core.Signal<unknown>) => void;
967
- pushMany: (map: Record<string, _angular_core.Signal<unknown>>) => void;
968
- };
962
+ protected gridColumn: _angular_core.Signal<string>;
963
+ protected gridRow: _angular_core.Signal<string>;
969
964
  constructor();
970
965
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridItemDirective, never>;
971
966
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridItemDirective, "[etGridItem]", ["etGridItem"], { "itemId": { "alias": "itemId"; "required": true; "isSignal": true; }; "minColSpan": { "alias": "minColSpan"; "required": false; "isSignal": true; }; "maxColSpan": { "alias": "maxColSpan"; "required": false; "isSignal": true; }; "minRowSpan": { "alias": "minRowSpan"; "required": false; "isSignal": true; }; "maxRowSpan": { "alias": "maxRowSpan"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -980,13 +975,7 @@ declare class GridDragDirective {
980
975
  private renderer;
981
976
  private dragStartClient;
982
977
  private dragPixelOffset;
983
- hostStyles: {
984
- remove: (tokens: string) => void;
985
- removeMany: (tokens: string[]) => void;
986
- has: (tokens: string) => boolean;
987
- push: (tokens: string, signal: _angular_core.Signal<unknown>) => void;
988
- pushMany: (map: Record<string, _angular_core.Signal<unknown>>) => void;
989
- };
978
+ protected dragTransform: _angular_core.Signal<string>;
990
979
  constructor();
991
980
  private applyFixed;
992
981
  private releaseFixed;
@@ -1051,13 +1040,9 @@ declare class GridComponent {
1051
1040
  private gridConfig;
1052
1041
  private locale;
1053
1042
  protected ariaLabel: _angular_core.Signal<string>;
1054
- hostStyles: {
1055
- remove: (tokens: string) => void;
1056
- removeMany: (tokens: string[]) => void;
1057
- has: (tokens: string) => boolean;
1058
- push: (tokens: string, signal: _angular_core.Signal<unknown>) => void;
1059
- pushMany: (map: Record<string, _angular_core.Signal<unknown>>) => void;
1060
- };
1043
+ protected gridColumns: _angular_core.Signal<number>;
1044
+ protected gridGap: _angular_core.Signal<string>;
1045
+ protected gridRowHeight: _angular_core.Signal<string>;
1061
1046
  constructor();
1062
1047
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridComponent, never>;
1063
1048
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridComponent, "et-grid, [et-grid]", never, {}, {}, never, ["*"], true, [{ directive: typeof GridDirective; inputs: { "breakpoints": "breakpoints"; "rowHeight": "rowHeight"; "gap": "gap"; "initialItems": "initialItems"; "readOnly": "readOnly"; }; outputs: { "layoutChange": "layoutChange"; }; }]>;