@pantoken/angular 0.1.27 → 0.1.28

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/index.d.mts CHANGED
@@ -12,7 +12,7 @@ import { register } from "@pantoken/web-components";
12
12
  * // Add CUSTOM_ELEMENTS_SCHEMA to the component/module that uses <instui-icon>.
13
13
  * ```
14
14
  */
15
- declare function registerPantokenElements(): void;
15
+ export declare function registerPantokenElements(): void;
16
16
  /**
17
17
  * Read a resolved token value. Returns `fallback` on the server.
18
18
  *
@@ -23,6 +23,6 @@ declare function registerPantokenElements(): void;
23
23
  * const brand = readToken("--instui-color-background-brand", "#0374B5");
24
24
  * ```
25
25
  */
26
- declare function readToken(name: string, fallback?: string): string;
26
+ export declare function readToken(name: string, fallback?: string): string;
27
27
  //#endregion
28
- export { readToken, register, registerPantokenElements };
28
+ export { register };
@@ -5,6 +5,5 @@ import { Preset } from "@pantoken/scaffold-base";
5
5
  *
6
6
  * Platform: `angular`
7
7
  */
8
- declare const presetAngular: Preset;
9
- //#endregion
10
- export { presetAngular };
8
+ export declare const presetAngular: Preset;
9
+ //#endregion
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@pantoken/angular",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "Angular helpers for pantoken: register the web components and read tokens.",
5
- "homepage": "https://pantoken.iywahl.com",
5
+ "homepage": "https://pantoken.app",
6
6
  "bugs": "https://github.com/thedannywahl/pantoken/issues",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -28,16 +28,16 @@
28
28
  "provenance": true
29
29
  },
30
30
  "dependencies": {
31
- "@pantoken/scaffold-base": "0.2.0",
32
- "@pantoken/web-components": "0.5.8"
31
+ "@pantoken/scaffold-base": "0.2.1",
32
+ "@pantoken/web-components": "0.6.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@pantoken/components": "1.0.3",
36
- "@types/node": "^26.3.0",
35
+ "@pantoken/components": "1.1.0",
36
+ "@types/node": "^26.5.0",
37
37
  "bingo-stratum": "^0.5.13",
38
38
  "typescript": "^7.0.2",
39
- "vite": "npm:@voidzero-dev/vite-plus-core@0.3.0",
40
- "vite-plus": "0.3.0"
39
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.3.1",
40
+ "vite-plus": "0.3.1"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@angular/core": ">=16"