@pantoken/pantoken 0.1.0 → 0.1.3
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 +46 -31
|
@@ -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.3",
|
|
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",
|
|
@@ -63,54 +73,60 @@
|
|
|
63
73
|
"access": "public"
|
|
64
74
|
},
|
|
65
75
|
"dependencies": {
|
|
66
|
-
"@pantoken/
|
|
76
|
+
"@pantoken/android": "0.1.1",
|
|
77
|
+
"@pantoken/angular": "0.1.1",
|
|
67
78
|
"@pantoken/astro": "0.1.0",
|
|
68
|
-
"@pantoken/components": "0.1.0",
|
|
69
79
|
"@pantoken/bootstrap": "0.1.0",
|
|
70
|
-
"@pantoken/
|
|
71
|
-
"@pantoken/
|
|
72
|
-
"@pantoken/
|
|
80
|
+
"@pantoken/cli": "0.1.2",
|
|
81
|
+
"@pantoken/components": "0.1.1",
|
|
82
|
+
"@pantoken/drupal": "0.1.1",
|
|
73
83
|
"@pantoken/dtcg": "0.1.0",
|
|
84
|
+
"@pantoken/compose": "0.1.1",
|
|
74
85
|
"@pantoken/email": "0.1.0",
|
|
75
86
|
"@pantoken/figma": "0.1.0",
|
|
76
|
-
"@pantoken/
|
|
77
|
-
"@pantoken/icons": "0.1.0",
|
|
87
|
+
"@pantoken/flutter": "0.1.1",
|
|
78
88
|
"@pantoken/foundation": "0.1.0",
|
|
89
|
+
"@pantoken/css-in-js": "0.1.0",
|
|
90
|
+
"@pantoken/css": "0.1.0",
|
|
91
|
+
"@pantoken/docusaurus": "0.1.0",
|
|
92
|
+
"@pantoken/icons": "0.1.0",
|
|
79
93
|
"@pantoken/less": "0.1.0",
|
|
80
|
-
"@pantoken/mui": "0.1.0",
|
|
81
94
|
"@pantoken/markdown-it": "0.1.0",
|
|
82
|
-
"@pantoken/
|
|
95
|
+
"@pantoken/mui": "0.1.0",
|
|
83
96
|
"@pantoken/mintlify": "0.1.0",
|
|
84
|
-
"@pantoken/pendo": "0.1.0",
|
|
85
97
|
"@pantoken/panda": "0.1.0",
|
|
86
98
|
"@pantoken/plugin-colors": "0.1.0",
|
|
87
|
-
"@pantoken/plugin-logos": "0.1.
|
|
88
|
-
"@pantoken/plugin-
|
|
99
|
+
"@pantoken/plugin-logos": "0.1.1",
|
|
100
|
+
"@pantoken/plugin-primitives": "0.1.1",
|
|
89
101
|
"@pantoken/plugin-prune-custom-props": "0.1.0",
|
|
90
|
-
"@pantoken/
|
|
91
|
-
"@pantoken/plugin-
|
|
92
|
-
"@pantoken/
|
|
102
|
+
"@pantoken/pendo": "0.1.1",
|
|
103
|
+
"@pantoken/plugin-simple-icons": "0.1.0",
|
|
104
|
+
"@pantoken/next": "0.1.0",
|
|
105
|
+
"@pantoken/plugin-theme-custom-media": "0.1.2",
|
|
106
|
+
"@pantoken/plugin-stacking": "0.1.1",
|
|
107
|
+
"@pantoken/plugin-visual-debug": "0.1.1",
|
|
108
|
+
"@pantoken/react": "0.1.1",
|
|
109
|
+
"@pantoken/plugin-transition": "0.1.1",
|
|
110
|
+
"@pantoken/react-markdown": "0.1.0",
|
|
93
111
|
"@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
112
|
"@pantoken/react-native": "0.1.0",
|
|
99
|
-
"@pantoken/
|
|
100
|
-
"@pantoken/svelte": "0.1.0",
|
|
113
|
+
"@pantoken/rehype": "0.1.0",
|
|
101
114
|
"@pantoken/scss": "0.1.0",
|
|
102
115
|
"@pantoken/storybook": "0.1.0",
|
|
116
|
+
"@pantoken/shadcn": "0.1.0",
|
|
117
|
+
"@pantoken/stylus": "0.1.0",
|
|
103
118
|
"@pantoken/swatches": "0.1.0",
|
|
104
|
-
"@pantoken/
|
|
119
|
+
"@pantoken/swift": "0.1.1",
|
|
105
120
|
"@pantoken/tokens": "0.1.0",
|
|
106
|
-
"@pantoken/
|
|
107
|
-
"@pantoken/
|
|
108
|
-
"@pantoken/vue": "0.1.0",
|
|
121
|
+
"@pantoken/tailwind": "0.1.0",
|
|
122
|
+
"@pantoken/svelte": "0.1.1",
|
|
109
123
|
"@pantoken/vitepress": "0.1.0",
|
|
110
|
-
"@pantoken/
|
|
111
|
-
"@pantoken/
|
|
124
|
+
"@pantoken/vite": "0.1.0",
|
|
125
|
+
"@pantoken/vanilla": "0.1.0",
|
|
126
|
+
"@pantoken/vue": "0.1.1",
|
|
127
|
+
"@pantoken/web-components": "0.1.1",
|
|
112
128
|
"@pantoken/wordpress": "0.1.0",
|
|
113
|
-
"@pantoken/
|
|
129
|
+
"@pantoken/webpack": "0.1.0"
|
|
114
130
|
},
|
|
115
131
|
"devDependencies": {
|
|
116
132
|
"@types/node": "^24.13.3",
|
|
@@ -120,8 +136,7 @@
|
|
|
120
136
|
"@pantoken/aggregate": "0.1.0"
|
|
121
137
|
},
|
|
122
138
|
"scripts": {
|
|
123
|
-
"aggregate": "node scripts/aggregate.
|
|
124
|
-
"build": "vp run aggregate && vp pack",
|
|
139
|
+
"aggregate": "node scripts/aggregate.ts",
|
|
125
140
|
"dev": "vp pack --watch",
|
|
126
141
|
"test": "vp run aggregate && vp test",
|
|
127
142
|
"check": "vp check"
|