@motiadev/workbench 0.2.1-beta.44 → 0.2.1-beta.46
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/middleware.js +3 -8
- package/dist/postcss.config.mjs +9 -0
- package/dist/src/components/endpoints/endpoint-call.js +3 -1
- package/dist/src/components/endpoints/hooks/use-get-endpoints.js +5 -16
- package/dist/src/components/endpoints/hooks/use-state-stream.d.ts +4 -0
- package/dist/src/components/endpoints/hooks/use-state-stream.js +8 -0
- package/dist/src/components/ui/sidebar.js +2 -2
- package/dist/src/hooks/use-list-flows.d.ts +0 -1
- package/dist/src/hooks/use-list-flows.js +6 -18
- package/dist/src/hooks/use-log-listener.js +3 -10
- package/dist/src/index.css +115 -254
- package/dist/src/main.js +5 -4
- package/dist/src/routes/flow.js +0 -2
- package/dist/tailwind.config.js +9 -64
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/tsconfig.node.tsbuildinfo +1 -1
- package/package.json +32 -35
- package/postcss.config.mjs +9 -0
- package/dist/postcss.config.js +0 -6
- package/dist/src/hooks/use-flow-listener.d.ts +0 -8
- package/dist/src/hooks/use-flow-listener.js +0 -17
- package/dist/src/hooks/use-flow-update-listener.d.ts +0 -1
- package/dist/src/hooks/use-flow-update-listener.js +0 -16
- package/dist/src/hooks/use-socket.d.ts +0 -7
- package/dist/src/hooks/use-socket.js +0 -17
- package/dist/tailwind.config.d.ts +0 -3
- package/dist/vite.config.d.ts +0 -2
- package/dist/vite.config.js +0 -20
package/dist/tailwind.config.js
CHANGED
|
@@ -1,64 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
content: [
|
|
11
|
-
path_1.default.resolve(__dirname, './index.html'),
|
|
12
|
-
path_1.default.resolve(__dirname, './src/**/*.{ts,tsx,js,jsx}'),
|
|
13
|
-
path_1.default.resolve(process.cwd(), './steps/**/*.tsx'),
|
|
14
|
-
],
|
|
15
|
-
theme: {
|
|
16
|
-
extend: {
|
|
17
|
-
borderRadius: {
|
|
18
|
-
lg: 'var(--radius)',
|
|
19
|
-
md: 'calc(var(--radius) - 2px)',
|
|
20
|
-
sm: 'calc(var(--radius) - 4px)',
|
|
21
|
-
},
|
|
22
|
-
colors: {
|
|
23
|
-
background: 'hsl(var(--background))',
|
|
24
|
-
foreground: 'hsl(var(--foreground))',
|
|
25
|
-
card: {
|
|
26
|
-
DEFAULT: 'hsl(var(--card))',
|
|
27
|
-
foreground: 'hsl(var(--card-foreground))',
|
|
28
|
-
},
|
|
29
|
-
popover: {
|
|
30
|
-
DEFAULT: 'hsl(var(--popover))',
|
|
31
|
-
foreground: 'hsl(var(--popover-foreground))',
|
|
32
|
-
},
|
|
33
|
-
primary: {
|
|
34
|
-
DEFAULT: 'hsl(var(--primary))',
|
|
35
|
-
foreground: 'hsl(var(--primary-foreground))',
|
|
36
|
-
},
|
|
37
|
-
secondary: {
|
|
38
|
-
DEFAULT: 'hsl(var(--secondary))',
|
|
39
|
-
foreground: 'hsl(var(--secondary-foreground))',
|
|
40
|
-
},
|
|
41
|
-
accent: {
|
|
42
|
-
DEFAULT: 'hsl(var(--accent))',
|
|
43
|
-
foreground: 'hsl(var(--accent-foreground))',
|
|
44
|
-
},
|
|
45
|
-
destructive: {
|
|
46
|
-
DEFAULT: 'hsl(var(--destructive))',
|
|
47
|
-
foreground: 'hsl(var(--destructive-foreground))',
|
|
48
|
-
},
|
|
49
|
-
border: 'hsl(var(--border))',
|
|
50
|
-
input: 'hsl(var(--input))',
|
|
51
|
-
ring: 'hsl(var(--ring))',
|
|
52
|
-
chart: {
|
|
53
|
-
'1': 'hsl(var(--chart-1))',
|
|
54
|
-
'2': 'hsl(var(--chart-2))',
|
|
55
|
-
'3': 'hsl(var(--chart-3))',
|
|
56
|
-
'4': 'hsl(var(--chart-4))',
|
|
57
|
-
'5': 'hsl(var(--chart-5))',
|
|
58
|
-
},
|
|
59
|
-
},
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
plugins: [tailwindcss_animate_1.default],
|
|
63
|
-
};
|
|
64
|
-
exports.default = config;
|
|
1
|
+
const path = require('path')
|
|
2
|
+
|
|
3
|
+
module.exports = {
|
|
4
|
+
content: [
|
|
5
|
+
path.resolve(__dirname, './index.html'),
|
|
6
|
+
path.resolve(__dirname, './src/**/*.{ts,tsx,js,jsx}'),
|
|
7
|
+
path.resolve(process.cwd(), './steps/**/*.tsx'),
|
|
8
|
+
],
|
|
9
|
+
}
|