@trackunit/shared-utils 0.0.8 → 0.0.9

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/index.cjs.js CHANGED
@@ -269,8 +269,8 @@ const hourIntervals = [
269
269
  ];
270
270
 
271
271
  const size = {
272
- SMALL: "small",
273
272
  MEDIUM: "medium",
273
+ SMALL: "small",
274
274
  LARGE: "large",
275
275
  };
276
276
 
package/index.esm.js CHANGED
@@ -265,8 +265,8 @@ const hourIntervals = [
265
265
  ];
266
266
 
267
267
  const size = {
268
- SMALL: "small",
269
268
  MEDIUM: "medium",
269
+ SMALL: "small",
270
270
  LARGE: "large",
271
271
  };
272
272
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/shared-utils",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -1,6 +1,6 @@
1
1
  export declare const size: {
2
- SMALL: "small";
3
- MEDIUM: "medium";
4
- LARGE: "large";
2
+ readonly MEDIUM: "medium";
3
+ readonly SMALL: "small";
4
+ readonly LARGE: "large";
5
5
  };
6
- export type Size = typeof size[keyof typeof size];
6
+ export type Size = (typeof size)[keyof typeof size];