@stacksjs/types 0.43.1 → 0.44.7

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/app.d.ts CHANGED
@@ -116,4 +116,12 @@ export interface AppOptions {
116
116
  * @default string "aes-256-cbc"
117
117
  */
118
118
  cipher: string;
119
+ /**
120
+ * **Font**
121
+ *
122
+ * Description WIP.
123
+ *
124
+ * @default object
125
+ */
126
+ font: object;
119
127
  }
package/dist/cli.d.ts CHANGED
@@ -122,6 +122,8 @@ export interface PreinstallOptions extends CliOptions {
122
122
  }
123
123
  export interface PrepublishOptions extends CliOptions {
124
124
  }
125
+ export interface TypesOptions extends CliOptions {
126
+ }
125
127
  export type LibEntryType = 'vue-components' | 'web-components' | 'functions' | 'all';
126
128
  /**
127
129
  * The available npm scripts within the Stacks toolkit.
@@ -173,5 +175,9 @@ export declare const enum NpmScript {
173
175
  Prepublish = "prepublish",
174
176
  Wip = "wip"
175
177
  }
178
+ export declare const enum Action {
179
+ Release = "release",
180
+ Prepublish = "prepublish"
181
+ }
176
182
  export type { CAC as CLI } from 'cac';
177
183
  export type { ExecaReturnValue as CommandResult } from 'execa';
package/dist/cli.mjs CHANGED
@@ -46,3 +46,8 @@ export var NpmScript = /* @__PURE__ */ ((NpmScript2) => {
46
46
  NpmScript2["Wip"] = "wip";
47
47
  return NpmScript2;
48
48
  })(NpmScript || {});
49
+ export var Action = /* @__PURE__ */ ((Action2) => {
50
+ Action2["Release"] = "release";
51
+ Action2["Prepublish"] = "prepublish";
52
+ return Action2;
53
+ })(Action || {});
package/dist/git.d.ts CHANGED
@@ -87,8 +87,8 @@ export interface GitOptions {
87
87
  subject: string;
88
88
  body: string;
89
89
  breaking: string;
90
- footerPrefixsSelect: string;
91
- customFooterPrefixs: string;
90
+ footerPrefixesSelect: string;
91
+ customFooterPrefixes: string;
92
92
  footer: string;
93
93
  confirmCommit: string;
94
94
  };
package/dist/utils.d.ts CHANGED
@@ -2,6 +2,10 @@
2
2
  * Null or whatever.
3
3
  */
4
4
  export type Nullable<T> = T | null | undefined;
5
+ /**
6
+ * Array, or not yet
7
+ */
8
+ export type Arrayable<T> = T | Array<T>;
5
9
  /**
6
10
  * Constructor.
7
11
  */
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/types",
3
3
  "type": "module",
4
- "version": "0.43.1",
5
- "packageManager": "pnpm@7.17.1",
4
+ "version": "0.44.7",
5
+ "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks framework types.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -34,7 +34,7 @@
34
34
  ],
35
35
  "engines": {
36
36
  "node": ">=v18.12.1",
37
- "pnpm": ">=7.17.1"
37
+ "pnpm": ">=7.18.2"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@mdit-vue/plugin-component": "^0.11.1",
@@ -47,20 +47,20 @@
47
47
  "@types/fs-extra": "^9.0.13",
48
48
  "@types/markdown-it-link-attributes": "^3.0.1",
49
49
  "@types/minimatch": "^5.1.2",
50
- "@types/node": "^18.11.10",
50
+ "@types/node": "^18.11.15",
51
51
  "@types/nprogress": "^0.2.0",
52
52
  "@types/pluralize": "^0.0.29",
53
- "@types/prompts": "^2.4.1",
53
+ "@types/prompts": "^2.4.2",
54
54
  "cac": "^6.7.14",
55
55
  "markdown-it": "^13.0.1",
56
56
  "mkdist": "^1.0.0",
57
- "typescript": "^4.9.3",
58
- "unplugin-auto-import": "^0.12.0",
59
- "unplugin-vue-components": "^0.22.11",
60
- "vite-plugin-inspect": "^0.7.9",
57
+ "typescript": "^4.9.4",
58
+ "unplugin-auto-import": "^0.12.1",
59
+ "unplugin-vue-components": "^0.22.12",
60
+ "vite-plugin-inspect": "^0.7.10",
61
61
  "vite-plugin-vue-layouts": "^0.7.0",
62
- "vite-ssg": "^0.22.0",
63
- "vitepress": "1.0.0-alpha.29"
62
+ "vite-ssg": "^0.22.1",
63
+ "vitepress": "1.0.0-alpha.31"
64
64
  },
65
65
  "scripts": {
66
66
  "build": "mkdist -d",