@stacksjs/types 0.48.2 → 0.49.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.
package/dist/cli.d.ts CHANGED
@@ -161,7 +161,7 @@ export declare const enum NpmScript {
161
161
  BuildStacks = "build:stacks",
162
162
  Clean = "rimraf ./pnpm-lock.yaml ./node_modules/ ./.stacks/**/node_modules",
163
163
  Dev = "dev",
164
- DevComponents = "dev:components",
164
+ DevComponents = "vite --config ./.stacks/core/build/src/vue-components.ts",
165
165
  DevDocs = "dev:docs",
166
166
  DevDesktop = "dev:desktop",
167
167
  DevPages = "dev:pages",
@@ -226,7 +226,8 @@ export declare const enum Action {
226
226
  ShowFeatureTestReport = "show-feature-test-report",
227
227
  Typecheck = "typecheck",
228
228
  KeyGenerate = "key-generate",
229
- MakeNotification = "make-notification"
229
+ MakeNotification = "make-notification",
230
+ DevComponents = "dev-components"
230
231
  }
231
232
  export type { CAC as CLI } from 'cac';
232
233
  export type { ExecaReturnValue as CommandResult } from 'execa';
package/dist/cli.mjs CHANGED
@@ -7,7 +7,7 @@ export var NpmScript = /* @__PURE__ */ ((NpmScript2) => {
7
7
  NpmScript2["BuildStacks"] = "build:stacks";
8
8
  NpmScript2["Clean"] = "rimraf ./pnpm-lock.yaml ./node_modules/ ./.stacks/**/node_modules";
9
9
  NpmScript2["Dev"] = "dev";
10
- NpmScript2["DevComponents"] = "dev:components";
10
+ NpmScript2["DevComponents"] = "vite --config ./.stacks/core/build/src/vue-components.ts";
11
11
  NpmScript2["DevDocs"] = "dev:docs";
12
12
  NpmScript2["DevDesktop"] = "dev:desktop";
13
13
  NpmScript2["DevPages"] = "dev:pages";
@@ -74,5 +74,6 @@ export var Action = /* @__PURE__ */ ((Action2) => {
74
74
  Action2["Typecheck"] = "typecheck";
75
75
  Action2["KeyGenerate"] = "key-generate";
76
76
  Action2["MakeNotification"] = "make-notification";
77
+ Action2["DevComponents"] = "dev-components";
77
78
  return Action2;
78
79
  })(Action || {});
@@ -74,7 +74,7 @@ export interface Options {
74
74
  /**
75
75
  * Remove custom SFC block
76
76
  *
77
- * @default ['route', 'i18n']
77
+ * @default ['route']
78
78
  */
79
79
  customSfcBlocks?: string[];
80
80
  /**
package/dist/tables.d.ts CHANGED
@@ -33,7 +33,15 @@ export interface TableStore {
33
33
  selectable?: string | boolean;
34
34
  selectedRows?: number[] | string[];
35
35
  selectedAll?: boolean;
36
+ goToNextPage: number;
37
+ goToPage: number;
38
+ goToPrevPage: number;
39
+ lastPageNumber: number;
40
+ searchFilters?: object;
41
+ searchParams?: object;
42
+ setTotalHits: number;
36
43
  /**
44
+ *
37
45
  * The current page number
38
46
  * @default 1
39
47
  * @type {number}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/types",
3
3
  "type": "module",
4
- "version": "0.48.2",
5
- "packageManager": "pnpm@7.21.0",
4
+ "version": "0.49.0",
5
+ "packageManager": "pnpm@7.25.0",
6
6
  "description": "The Stacks framework types.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -33,19 +33,19 @@
33
33
  "README.md"
34
34
  ],
35
35
  "engines": {
36
- "node": ">=v18.12.1",
37
- "pnpm": ">=7.21.0"
36
+ "node": ">=v18.13.0",
37
+ "pnpm": ">=7.25.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@mdit-vue/plugin-component": "^0.11.2",
41
41
  "@mdit-vue/plugin-frontmatter": "^0.11.1",
42
42
  "@mdit-vue/types": "^0.11.0",
43
- "@prisma/client": "^4.8.0",
43
+ "@prisma/client": "^4.8.1",
44
44
  "@rollup/pluginutils": "^5.0.2",
45
45
  "@types/bcryptjs": "^2.4.2",
46
46
  "@types/crypto-js": "^4.1.1",
47
47
  "@types/eslint": "^8.4.10",
48
- "@types/fs-extra": "^9.0.13",
48
+ "@types/fs-extra": "^11.0.1",
49
49
  "@types/markdown-it-link-attributes": "^3.0.1",
50
50
  "@types/minimatch": "^5.1.2",
51
51
  "@types/node": "^18.11.18",
@@ -54,14 +54,14 @@
54
54
  "@types/prompts": "^2.4.2",
55
55
  "cac": "^6.7.14",
56
56
  "markdown-it": "^13.0.1",
57
- "mkdist": "^1.0.0",
57
+ "mkdist": "^1.1.0",
58
58
  "typescript": "^4.9.4",
59
59
  "unplugin-auto-import": "^0.12.1",
60
60
  "unplugin-vue-components": "^0.22.12",
61
- "vite-plugin-inspect": "^0.7.12",
61
+ "vite-plugin-inspect": "^0.7.14",
62
62
  "vite-plugin-vue-layouts": "^0.7.0",
63
63
  "vite-ssg": "^0.22.1",
64
- "vitepress": "1.0.0-alpha.34"
64
+ "vitepress": "1.0.0-alpha.36"
65
65
  },
66
66
  "scripts": {
67
67
  "build": "mkdist -d",