@pantoken/pantoken 0.1.0 → 0.1.4
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/android.d.mts +1 -0
- package/dist/android.mjs +2 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +2 -0
- package/dist/compose.d.mts +1 -0
- package/dist/compose.mjs +2 -0
- package/dist/flutter.d.mts +1 -0
- package/dist/flutter.mjs +2 -0
- package/dist/index.d.mts +2 -1
- package/dist/index.mjs +2 -1
- package/dist/swift.d.mts +1 -0
- package/dist/swift.mjs +2 -0
- package/dist/themeCustomMedia.d.mts +1 -0
- package/dist/themeCustomMedia.mjs +2 -0
- package/package.json +76 -61
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/android";
|
package/dist/android.mjs
ADDED
package/dist/cli.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/cli";
|
package/dist/cli.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/compose";
|
package/dist/compose.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/flutter";
|
package/dist/flutter.mjs
ADDED
package/dist/index.d.mts
CHANGED
|
@@ -20,9 +20,10 @@ import * as shadcn from "@pantoken/shadcn";
|
|
|
20
20
|
import * as simpleIcons from "@pantoken/plugin-simple-icons";
|
|
21
21
|
import * as stacking from "@pantoken/plugin-stacking";
|
|
22
22
|
import * as stylus from "@pantoken/stylus";
|
|
23
|
+
import * as themeCustomMedia from "@pantoken/plugin-theme-custom-media";
|
|
23
24
|
import * as tokens from "@pantoken/tokens";
|
|
24
25
|
import * as transition from "@pantoken/plugin-transition";
|
|
25
26
|
import * as visualDebug from "@pantoken/plugin-visual-debug";
|
|
26
27
|
import * as vitepress from "@pantoken/vitepress";
|
|
27
28
|
import * as webComponents from "@pantoken/web-components";
|
|
28
|
-
export { astro, bootstrap, colors, components, css, cssInJs, docusaurus, dtcg, foundation, icons, less, logos, mintlify, mui, primitives, pruneCustomProps, rehype, scss, shadcn, simpleIcons, stacking, stylus, tokens, transition, visualDebug, vitepress, webComponents };
|
|
29
|
+
export { astro, bootstrap, colors, components, css, cssInJs, docusaurus, dtcg, foundation, icons, less, logos, mintlify, mui, primitives, pruneCustomProps, rehype, scss, shadcn, simpleIcons, stacking, stylus, themeCustomMedia, tokens, transition, visualDebug, vitepress, webComponents };
|
package/dist/index.mjs
CHANGED
|
@@ -20,9 +20,10 @@ import * as shadcn from "@pantoken/shadcn";
|
|
|
20
20
|
import * as simpleIcons from "@pantoken/plugin-simple-icons";
|
|
21
21
|
import * as stacking from "@pantoken/plugin-stacking";
|
|
22
22
|
import * as stylus from "@pantoken/stylus";
|
|
23
|
+
import * as themeCustomMedia from "@pantoken/plugin-theme-custom-media";
|
|
23
24
|
import * as tokens from "@pantoken/tokens";
|
|
24
25
|
import * as transition from "@pantoken/plugin-transition";
|
|
25
26
|
import * as visualDebug from "@pantoken/plugin-visual-debug";
|
|
26
27
|
import * as vitepress from "@pantoken/vitepress";
|
|
27
28
|
import * as webComponents from "@pantoken/web-components";
|
|
28
|
-
export { astro, bootstrap, colors, components, css, cssInJs, docusaurus, dtcg, foundation, icons, less, logos, mintlify, mui, primitives, pruneCustomProps, rehype, scss, shadcn, simpleIcons, stacking, stylus, tokens, transition, visualDebug, vitepress, webComponents };
|
|
29
|
+
export { astro, bootstrap, colors, components, css, cssInJs, docusaurus, dtcg, foundation, icons, less, logos, mintlify, mui, primitives, pruneCustomProps, rehype, scss, shadcn, simpleIcons, stacking, stylus, themeCustomMedia, tokens, transition, visualDebug, vitepress, webComponents };
|
package/dist/swift.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/swift";
|
package/dist/swift.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-theme-custom-media";
|
package/package.json
CHANGED
|
@@ -1,19 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantoken/pantoken",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "The unified pantoken package: Instructure design tokens, icons, and platform integrations, auto-aggregated from @pantoken/*.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/thedannywahl/pantoken.git"
|
|
9
|
+
},
|
|
6
10
|
"files": [
|
|
7
11
|
"dist"
|
|
8
12
|
],
|
|
9
13
|
"type": "module",
|
|
10
14
|
"exports": {
|
|
11
15
|
".": "./dist/index.mjs",
|
|
16
|
+
"./android": "./dist/android.mjs",
|
|
12
17
|
"./angular": "./dist/angular.mjs",
|
|
13
18
|
"./astro": "./dist/astro.mjs",
|
|
14
19
|
"./bootstrap": "./dist/bootstrap.mjs",
|
|
20
|
+
"./cli": "./dist/cli.mjs",
|
|
15
21
|
"./colors": "./dist/colors.mjs",
|
|
16
22
|
"./components": "./dist/components.mjs",
|
|
23
|
+
"./compose": "./dist/compose.mjs",
|
|
17
24
|
"./css": "./dist/css.mjs",
|
|
18
25
|
"./cssInJs": "./dist/cssInJs.mjs",
|
|
19
26
|
"./docusaurus": "./dist/docusaurus.mjs",
|
|
@@ -21,6 +28,7 @@
|
|
|
21
28
|
"./dtcg": "./dist/dtcg.mjs",
|
|
22
29
|
"./email": "./dist/email.mjs",
|
|
23
30
|
"./figma": "./dist/figma.mjs",
|
|
31
|
+
"./flutter": "./dist/flutter.mjs",
|
|
24
32
|
"./foundation": "./dist/foundation.mjs",
|
|
25
33
|
"./icons": "./dist/icons.mjs",
|
|
26
34
|
"./less": "./dist/less.mjs",
|
|
@@ -46,7 +54,9 @@
|
|
|
46
54
|
"./stylus": "./dist/stylus.mjs",
|
|
47
55
|
"./svelte": "./dist/svelte.mjs",
|
|
48
56
|
"./swatches": "./dist/swatches.mjs",
|
|
57
|
+
"./swift": "./dist/swift.mjs",
|
|
49
58
|
"./tailwind": "./dist/tailwind.mjs",
|
|
59
|
+
"./themeCustomMedia": "./dist/themeCustomMedia.mjs",
|
|
50
60
|
"./tokens": "./dist/tokens.mjs",
|
|
51
61
|
"./transition": "./dist/transition.mjs",
|
|
52
62
|
"./vanilla": "./dist/vanilla.mjs",
|
|
@@ -62,68 +72,73 @@
|
|
|
62
72
|
"publishConfig": {
|
|
63
73
|
"access": "public"
|
|
64
74
|
},
|
|
65
|
-
"dependencies": {
|
|
66
|
-
"@pantoken/angular": "0.1.0",
|
|
67
|
-
"@pantoken/astro": "0.1.0",
|
|
68
|
-
"@pantoken/components": "0.1.0",
|
|
69
|
-
"@pantoken/bootstrap": "0.1.0",
|
|
70
|
-
"@pantoken/css-in-js": "0.1.0",
|
|
71
|
-
"@pantoken/css": "0.1.0",
|
|
72
|
-
"@pantoken/docusaurus": "0.1.0",
|
|
73
|
-
"@pantoken/dtcg": "0.1.0",
|
|
74
|
-
"@pantoken/email": "0.1.0",
|
|
75
|
-
"@pantoken/figma": "0.1.0",
|
|
76
|
-
"@pantoken/drupal": "0.1.0",
|
|
77
|
-
"@pantoken/icons": "0.1.0",
|
|
78
|
-
"@pantoken/foundation": "0.1.0",
|
|
79
|
-
"@pantoken/less": "0.1.0",
|
|
80
|
-
"@pantoken/mui": "0.1.0",
|
|
81
|
-
"@pantoken/markdown-it": "0.1.0",
|
|
82
|
-
"@pantoken/next": "0.1.0",
|
|
83
|
-
"@pantoken/mintlify": "0.1.0",
|
|
84
|
-
"@pantoken/pendo": "0.1.0",
|
|
85
|
-
"@pantoken/panda": "0.1.0",
|
|
86
|
-
"@pantoken/plugin-colors": "0.1.0",
|
|
87
|
-
"@pantoken/plugin-logos": "0.1.0",
|
|
88
|
-
"@pantoken/plugin-simple-icons": "0.1.0",
|
|
89
|
-
"@pantoken/plugin-prune-custom-props": "0.1.0",
|
|
90
|
-
"@pantoken/plugin-primitives": "0.1.0",
|
|
91
|
-
"@pantoken/plugin-stacking": "0.1.0",
|
|
92
|
-
"@pantoken/plugin-visual-debug": "0.1.0",
|
|
93
|
-
"@pantoken/postcss": "0.1.0",
|
|
94
|
-
"@pantoken/plugin-transition": "0.1.0",
|
|
95
|
-
"@pantoken/react": "0.1.0",
|
|
96
|
-
"@pantoken/rehype": "0.1.0",
|
|
97
|
-
"@pantoken/shadcn": "0.1.0",
|
|
98
|
-
"@pantoken/react-native": "0.1.0",
|
|
99
|
-
"@pantoken/stylus": "0.1.0",
|
|
100
|
-
"@pantoken/svelte": "0.1.0",
|
|
101
|
-
"@pantoken/scss": "0.1.0",
|
|
102
|
-
"@pantoken/storybook": "0.1.0",
|
|
103
|
-
"@pantoken/swatches": "0.1.0",
|
|
104
|
-
"@pantoken/tailwind": "0.1.0",
|
|
105
|
-
"@pantoken/tokens": "0.1.0",
|
|
106
|
-
"@pantoken/vanilla": "0.1.0",
|
|
107
|
-
"@pantoken/vite": "0.1.0",
|
|
108
|
-
"@pantoken/vue": "0.1.0",
|
|
109
|
-
"@pantoken/vitepress": "0.1.0",
|
|
110
|
-
"@pantoken/web-components": "0.1.0",
|
|
111
|
-
"@pantoken/webpack": "0.1.0",
|
|
112
|
-
"@pantoken/wordpress": "0.1.0",
|
|
113
|
-
"@pantoken/react-markdown": "0.1.0"
|
|
114
|
-
},
|
|
115
|
-
"devDependencies": {
|
|
116
|
-
"@types/node": "^24.13.3",
|
|
117
|
-
"typescript": "^6.0.3",
|
|
118
|
-
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.4",
|
|
119
|
-
"vite-plus": "0.2.4",
|
|
120
|
-
"@pantoken/aggregate": "0.1.0"
|
|
121
|
-
},
|
|
122
75
|
"scripts": {
|
|
123
|
-
"aggregate": "node scripts/aggregate.
|
|
124
|
-
"build": "vp run aggregate && vp pack",
|
|
76
|
+
"aggregate": "node scripts/aggregate.ts",
|
|
125
77
|
"dev": "vp pack --watch",
|
|
126
78
|
"test": "vp run aggregate && vp test",
|
|
127
79
|
"check": "vp check"
|
|
80
|
+
},
|
|
81
|
+
"dependencies": {
|
|
82
|
+
"@pantoken/android": "workspace:*",
|
|
83
|
+
"@pantoken/angular": "workspace:*",
|
|
84
|
+
"@pantoken/astro": "workspace:*",
|
|
85
|
+
"@pantoken/bootstrap": "workspace:*",
|
|
86
|
+
"@pantoken/cli": "workspace:*",
|
|
87
|
+
"@pantoken/components": "workspace:*",
|
|
88
|
+
"@pantoken/compose": "workspace:*",
|
|
89
|
+
"@pantoken/css": "workspace:*",
|
|
90
|
+
"@pantoken/css-in-js": "workspace:*",
|
|
91
|
+
"@pantoken/docusaurus": "workspace:*",
|
|
92
|
+
"@pantoken/drupal": "workspace:*",
|
|
93
|
+
"@pantoken/dtcg": "workspace:*",
|
|
94
|
+
"@pantoken/email": "workspace:*",
|
|
95
|
+
"@pantoken/figma": "workspace:*",
|
|
96
|
+
"@pantoken/flutter": "workspace:*",
|
|
97
|
+
"@pantoken/foundation": "workspace:*",
|
|
98
|
+
"@pantoken/icons": "workspace:*",
|
|
99
|
+
"@pantoken/less": "workspace:*",
|
|
100
|
+
"@pantoken/markdown-it": "workspace:*",
|
|
101
|
+
"@pantoken/mintlify": "workspace:*",
|
|
102
|
+
"@pantoken/mui": "workspace:*",
|
|
103
|
+
"@pantoken/next": "workspace:*",
|
|
104
|
+
"@pantoken/panda": "workspace:*",
|
|
105
|
+
"@pantoken/pendo": "workspace:*",
|
|
106
|
+
"@pantoken/plugin-colors": "workspace:*",
|
|
107
|
+
"@pantoken/plugin-logos": "workspace:*",
|
|
108
|
+
"@pantoken/plugin-primitives": "workspace:*",
|
|
109
|
+
"@pantoken/plugin-prune-custom-props": "workspace:*",
|
|
110
|
+
"@pantoken/plugin-simple-icons": "workspace:*",
|
|
111
|
+
"@pantoken/plugin-stacking": "workspace:*",
|
|
112
|
+
"@pantoken/plugin-theme-custom-media": "workspace:*",
|
|
113
|
+
"@pantoken/plugin-transition": "workspace:*",
|
|
114
|
+
"@pantoken/plugin-visual-debug": "workspace:*",
|
|
115
|
+
"@pantoken/postcss": "workspace:*",
|
|
116
|
+
"@pantoken/react": "workspace:*",
|
|
117
|
+
"@pantoken/react-markdown": "workspace:*",
|
|
118
|
+
"@pantoken/react-native": "workspace:*",
|
|
119
|
+
"@pantoken/rehype": "workspace:*",
|
|
120
|
+
"@pantoken/scss": "workspace:*",
|
|
121
|
+
"@pantoken/shadcn": "workspace:*",
|
|
122
|
+
"@pantoken/storybook": "workspace:*",
|
|
123
|
+
"@pantoken/stylus": "workspace:*",
|
|
124
|
+
"@pantoken/svelte": "workspace:*",
|
|
125
|
+
"@pantoken/swatches": "workspace:*",
|
|
126
|
+
"@pantoken/swift": "workspace:*",
|
|
127
|
+
"@pantoken/tailwind": "workspace:*",
|
|
128
|
+
"@pantoken/tokens": "workspace:*",
|
|
129
|
+
"@pantoken/vanilla": "workspace:*",
|
|
130
|
+
"@pantoken/vite": "workspace:*",
|
|
131
|
+
"@pantoken/vitepress": "workspace:*",
|
|
132
|
+
"@pantoken/vue": "workspace:*",
|
|
133
|
+
"@pantoken/web-components": "workspace:*",
|
|
134
|
+
"@pantoken/webpack": "workspace:*",
|
|
135
|
+
"@pantoken/wordpress": "workspace:*"
|
|
136
|
+
},
|
|
137
|
+
"devDependencies": {
|
|
138
|
+
"@pantoken/aggregate": "workspace:*",
|
|
139
|
+
"@types/node": "catalog:",
|
|
140
|
+
"typescript": "catalog:",
|
|
141
|
+
"vite": "catalog:",
|
|
142
|
+
"vite-plus": "catalog:"
|
|
128
143
|
}
|
|
129
|
-
}
|
|
144
|
+
}
|