@agencecinq/utils 5.0.0 → 5.0.1
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/.turbo/turbo-build.log +2 -2
- package/dist/index.d.ts +7 -7
- package/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/environment.ts +1 -1
- package/src/index.ts +7 -7
- package/src/scroll.ts +1 -1
- package/vite.config.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
[2K[1Grendering chunks (1)...[2K[1G[32m
|
|
9
9
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
10
10
|
[2K[1Gcomputing gzip size (0)...[2K[1Gcomputing gzip size (1)...[2K[1G[2mdist/[22m[36mindex.js [39m[1m[2m3.66 kB[22m[1m[22m[2m │ gzip: 1.66 kB[22m
|
|
11
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
11
|
+
[32m[36m[vite:dts][32m Declaration files built in 1458ms.
|
|
12
12
|
[39m
|
|
13
|
-
[32m✓ built in 1.
|
|
13
|
+
[32m✓ built in 1.65s[39m
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export * from './events';
|
|
2
|
-
export * from './scroll';
|
|
3
|
-
export * from './throttle';
|
|
4
|
-
export * from './environment';
|
|
5
|
-
export * from './focus-trap';
|
|
6
|
-
export * from './keycode';
|
|
7
|
-
export * from './clamp';
|
|
1
|
+
export * from './events.js';
|
|
2
|
+
export * from './scroll.js';
|
|
3
|
+
export * from './throttle.js';
|
|
4
|
+
export * from './environment.js';
|
|
5
|
+
export * from './focus-trap.js';
|
|
6
|
+
export * from './keycode.js';
|
|
7
|
+
export * from './clamp.js';
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC"}
|
package/package.json
CHANGED
package/src/environment.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from './events';
|
|
2
|
-
export * from './scroll';
|
|
3
|
-
export * from './throttle';
|
|
4
|
-
export * from './environment';
|
|
5
|
-
export * from './focus-trap';
|
|
6
|
-
export * from './keycode';
|
|
7
|
-
export * from './clamp';
|
|
1
|
+
export * from './events.js';
|
|
2
|
+
export * from './scroll.js';
|
|
3
|
+
export * from './throttle.js';
|
|
4
|
+
export * from './environment.js';
|
|
5
|
+
export * from './focus-trap.js';
|
|
6
|
+
export * from './keycode.js';
|
|
7
|
+
export * from './clamp.js';
|
package/src/scroll.ts
CHANGED