@aphexcms/cms-core 0.2.1 → 0.2.3

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/dist/cli/index.js CHANGED
File without changes
@@ -1,11 +1,4 @@
1
- import { Sidebar } from '@aphexcms/ui/shadcn/sidebar';
2
- import type { SidebarData } from '../../../types/sidebar.js';
3
- import type { ComponentProps } from 'svelte';
4
- type Props = ComponentProps<typeof Sidebar> & {
5
- data: SidebarData;
6
- onSignOut?: () => void | Promise<void>;
7
- };
8
- declare const AppSidebar: import("svelte").Component<Props, {}, "">;
1
+ declare const AppSidebar: import("svelte").Component<any, {}, "">;
9
2
  type AppSidebar = ReturnType<typeof AppSidebar>;
10
3
  export default AppSidebar;
11
4
  //# sourceMappingURL=AppSidebar.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AppSidebar.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/layout/sidebar/AppSidebar.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,OAAO,EAKP,MAAM,6BAA6B,CAAC;AAItC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAG5C,KAAK,KAAK,GAAG,cAAc,CAAC,OAAO,OAAO,CAAC,GAAG;IAC7C,IAAI,EAAE,WAAW,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACvC,CAAC;AAqDH,QAAA,MAAM,UAAU,2CAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"AppSidebar.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/layout/sidebar/AppSidebar.svelte.ts"],"names":[],"mappings":"AAyEA,QAAA,MAAM,UAAU,yCAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import dayjs from 'dayjs';
2
- import customParseFormat from 'dayjs/plugin/customParseFormat';
3
- import utc from 'dayjs/plugin/utc';
2
+ import customParseFormat from 'dayjs/plugin/customParseFormat.js';
3
+ import utc from 'dayjs/plugin/utc.js';
4
4
  dayjs.extend(customParseFormat);
5
5
  dayjs.extend(utc);
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  // Sanity-style validation Rule implementation
2
2
  import dayjs from 'dayjs';
3
- import customParseFormat from 'dayjs/plugin/customParseFormat';
3
+ import customParseFormat from 'dayjs/plugin/customParseFormat.js';
4
4
  // Enable strict parsing
5
5
  dayjs.extend(customParseFormat);
6
6
  export class Rule {
@@ -1,6 +1,6 @@
1
1
  import dayjs from 'dayjs';
2
- import customParseFormat from 'dayjs/plugin/customParseFormat';
3
- import utc from 'dayjs/plugin/utc';
2
+ import customParseFormat from 'dayjs/plugin/customParseFormat.js';
3
+ import utc from 'dayjs/plugin/utc.js';
4
4
  dayjs.extend(customParseFormat);
5
5
  dayjs.extend(utc);
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  // Sanity-style validation Rule implementation
2
2
  import dayjs from 'dayjs';
3
- import customParseFormat from 'dayjs/plugin/customParseFormat';
3
+ import customParseFormat from 'dayjs/plugin/customParseFormat.js';
4
4
  // Enable strict parsing
5
5
  dayjs.extend(customParseFormat);
6
6
  export class Rule {
@@ -1,5 +1,5 @@
1
1
  import dayjs from 'dayjs';
2
- import utc from 'dayjs/plugin/utc';
2
+ import utc from 'dayjs/plugin/utc.js';
3
3
  dayjs.extend(utc);
4
4
  /**
5
5
  * Helper functions for initialValue date/datetime patterns
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@aphexcms/cms-core",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Aphex CMS Core - A Sanity-style CMS with ports and adapters architecture",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "svelte": "./dist/index.js",
9
9
  "bin": {
10
- "aphex": "./dist/cli/index.ts"
10
+ "aphex": "./dist/cli/index.js"
11
11
  },
12
12
  "exports": {
13
13
  ".": {