@pantoken/angular 0.1.25 → 0.1.26

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.
@@ -0,0 +1,10 @@
1
+ import { Preset } from "@pantoken/scaffold-base";
2
+ //#region src/scaffold-preset.d.ts
3
+ /**
4
+ * Preset for scaffolding Angular (standalone) projects with pantoken web components.
5
+ *
6
+ * Platform: `angular`
7
+ */
8
+ declare const presetAngular: Preset;
9
+ //#endregion
10
+ export { presetAngular };
@@ -0,0 +1,14 @@
1
+ import { base, createPreset } from "@pantoken/scaffold-base";
2
+ //#region src/scaffold-preset.ts
3
+ /**
4
+ * Preset for scaffolding Angular (standalone) projects with pantoken web components.
5
+ *
6
+ * Platform: `angular`
7
+ */
8
+ const presetAngular = createPreset({
9
+ name: "angular",
10
+ base,
11
+ blocks: []
12
+ });
13
+ //#endregion
14
+ export { presetAngular };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pantoken/angular",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "Angular helpers for pantoken: register the web components and read tokens.",
5
5
  "homepage": "https://pantoken.iywahl.com",
6
6
  "bugs": "https://github.com/thedannywahl/pantoken/issues",
@@ -20,6 +20,7 @@
20
20
  "exports": {
21
21
  ".": "./dist/index.mjs",
22
22
  "./components.css": "./dist/components.css",
23
+ "./scaffold-preset": "./dist/scaffold-preset.mjs",
23
24
  "./package.json": "./package.json"
24
25
  },
25
26
  "publishConfig": {
@@ -27,14 +28,16 @@
27
28
  "provenance": true
28
29
  },
29
30
  "dependencies": {
30
- "@pantoken/web-components": "0.5.6"
31
+ "@pantoken/scaffold-base": "0.2.0",
32
+ "@pantoken/web-components": "0.5.7"
31
33
  },
32
34
  "devDependencies": {
33
- "@types/node": "^24.13.3",
35
+ "@pantoken/components": "1.0.2",
36
+ "@types/node": "^26.3.0",
37
+ "bingo-stratum": "^0.5.13",
34
38
  "typescript": "^7.0.2",
35
- "vite": "npm:@voidzero-dev/vite-plus-core@0.2.9",
36
- "vite-plus": "0.2.9",
37
- "@pantoken/components": "1.0.1"
39
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.3.0",
40
+ "vite-plus": "0.3.0"
38
41
  },
39
42
  "peerDependencies": {
40
43
  "@angular/core": ">=16"