sprintify-ui 0.2.16 → 0.2.17

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.
@@ -19356,15 +19356,16 @@ const L1 = ["onClick"], P1 = { class: "px-2 flex items-center" }, $1 = { class:
19356
19356
  ], 4))), 128))
19357
19357
  ], 512),
19358
19358
  L("div", {
19359
- class: "absolute top-0 left-0 pointer-events-none",
19359
+ class: "absolute left-0 pointer-events-none",
19360
19360
  style: lt({
19361
+ top: `${Cr}px`,
19361
19362
  width: `${T(o)}px`,
19362
19363
  height: T(a) + "px",
19363
19364
  transform: `translateX(${T(m)}px)`
19364
19365
  })
19365
19366
  }, [
19366
19367
  ($(), Z("svg", {
19367
- "view-box": `${T(o)} ${Cr}`,
19368
+ "view-box": `${T(o)} ${T(a)}`,
19368
19369
  width: T(o),
19369
19370
  height: T(a)
19370
19371
  }, [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.2.16",
3
+ "version": "0.2.17",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -7,13 +7,13 @@ import { random } from 'lodash';
7
7
 
8
8
  const rows = [];
9
9
 
10
- for (let i = 0; i < 10; i++) {
10
+ for (let i = 0; i < 2; i++) {
11
11
 
12
12
  const items = [];
13
13
 
14
- for (let j = 0; j < 3; j++) {
14
+ for (let j = 0; j < 1; j++) {
15
15
 
16
- const start = DateTime.now().plus({ days: j * 1 });
16
+ const start = DateTime.now().plus({ days: i * 1 });
17
17
  const end = start.plus({ days: 0.5 });
18
18
 
19
19
  const colors = ['blue', 'green', 'red', 'yellow', 'indigo', 'pink', 'purple', 'gray'];
@@ -187,15 +187,16 @@
187
187
  <!-- Vertical lines -->
188
188
 
189
189
  <div
190
- class="absolute top-0 left-0 pointer-events-none"
190
+ class="absolute left-0 pointer-events-none"
191
191
  :style="{
192
+ top: `${HEADER_HEIGHT}px`,
192
193
  width: `${width}px`,
193
194
  height: height + 'px',
194
195
  transform: `translateX(${scrollX}px)`,
195
196
  }"
196
197
  >
197
198
  <svg
198
- :view-box="`${width} ${HEADER_HEIGHT}`"
199
+ :view-box="`${width} ${height}`"
199
200
  :width="width"
200
201
  :height="height"
201
202
  >