@fluid-topics/ft-snap-scroll 0.3.71 → 1.0.0-alpha.0

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.
@@ -5,4 +5,3 @@ export declare const FtSnapScrollCssVariables: {
5
5
  colorSurface: import("@fluid-topics/ft-wc-utils").FtCssVariable;
6
6
  };
7
7
  export declare const styles: import("lit").CSSResult;
8
- //# sourceMappingURL=ft-snap-scroll.css.d.ts.map
@@ -134,4 +134,3 @@ export const styles = css `
134
134
  background-color: ${FtSnapScrollCssVariables.colorSurface};
135
135
  }
136
136
  `;
137
- //# sourceMappingURL=ft-snap-scroll.css.js.map
@@ -51,4 +51,3 @@ export declare class FtSnapScroll extends FtLitElement implements FtSnapScrollPr
51
51
  private getOffset;
52
52
  private getDistanceFromStart;
53
53
  }
54
- //# sourceMappingURL=ft-snap-scroll.d.ts.map
@@ -15,7 +15,7 @@ export class CurrentElementChange extends CustomEvent {
15
15
  super("current-element-change", { detail: { index, element } });
16
16
  }
17
17
  }
18
- export class FtSnapScroll extends FtLitElement {
18
+ class FtSnapScroll extends FtLitElement {
19
19
  constructor() {
20
20
  super(...arguments);
21
21
  this.horizontal = false;
@@ -72,7 +72,7 @@ export class FtSnapScroll extends FtLitElement {
72
72
  class="ft-snap-scroll--previous"
73
73
  part="controls"
74
74
  primary
75
- icon="${this.horizontal ? "arrow_back_ios_new" : "expand_less"}"
75
+ icon="${this.horizontal ? "THIN_ARROW_LEFT" : "THIN_ARROW_UP"}"
76
76
  ?hidden=${!showControls || this.startReached}
77
77
  ?disabled=${!showControls || this.startReached}
78
78
  @click=${this.previous}
@@ -84,7 +84,7 @@ export class FtSnapScroll extends FtLitElement {
84
84
  class="ft-snap-scroll--next"
85
85
  part="controls"
86
86
  primary
87
- icon="${this.horizontal ? "arrow_forward_ios" : "expand_more"}"
87
+ icon="${this.horizontal ? "THIN_ARROW_RIGHT" : "THIN_ARROW"}"
88
88
  ?hidden=${!showControls || this.endReached}
89
89
  ?disabled=${!showControls || this.endReached}
90
90
  @click=${this.next}
@@ -240,4 +240,4 @@ __decorate([
240
240
  __decorate([
241
241
  query(".ft-snap-scroll--content")
242
242
  ], FtSnapScroll.prototype, "contentSlot", void 0);
243
- //# sourceMappingURL=ft-snap-scroll.js.map
243
+ export { FtSnapScroll };