@meistrari/tela-build 1.19.0 → 1.19.2

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.
@@ -5,7 +5,7 @@ import { useI18n } from 'vue-i18n'
5
5
  import { cn } from '~/lib/utils'
6
6
 
7
7
  import { ComboboxRoot as Combobox, ComboboxTrigger } from 'reka-ui'
8
- import type { AllActionsInfo } from 'tela-workflow'
8
+ import type { AllActionsInfo } from 'tela-workflow/src/compat-v1-schemas'
9
9
 
10
10
  import ComboboxAnchor from './combobox-anchor.vue'
11
11
  import ComboboxEmpty from './combobox-empty.vue'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/tela-build",
3
- "version": "1.19.0",
3
+ "version": "1.19.2",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "app.config.ts",
@@ -57,7 +57,6 @@
57
57
  "resize-observer-polyfill": "1.5.1",
58
58
  "tailwind-merge": "2.5.4",
59
59
  "tailwindcss-animate": "1.0.7",
60
- "tela-workflow": "workspace:*",
61
60
  "ts-morph": "22.0.0",
62
61
  "typescript": "5.8.2",
63
62
  "unocss": "66.5.12",
package/app.config.ts DELETED
@@ -1,73 +0,0 @@
1
- export default defineAppConfig({
2
- ui: {
3
- primary: 'black',
4
- selectMenu: {
5
- rounded: 'rounded-8px',
6
- ring: 'ring-0 b-1 b-gray-200',
7
- background: '!bg-red',
8
- },
9
- button: {
10
- variant: {
11
- solid: 'text-black bg-white shadow-none b-1 b-#EDEDED hover:bg-#F7F7F7 hover:b-#DEDEDE transition disabled:bg-white disabled:cursor-not-allowed ',
12
- },
13
- size: {
14
- '2xs': 'text-xs',
15
- 'xs': 'text-xs',
16
- 'sm': 'text-[13px] h-32px',
17
- 'md': 'text-[13px] h-40px',
18
- 'lg': 'text-sm',
19
- 'xl': 'text-base',
20
- },
21
- padding: {
22
- md: '!px-16px !py-15px',
23
- },
24
- default: {
25
- size: 'md',
26
- variant: 'solid',
27
- color: 'primary',
28
- loadingIcon: 'i-ph-arrows-clockwise',
29
- },
30
- },
31
- input: {
32
- base: '!ring-0 !shadow-none !bg-pink',
33
- padding: {
34
- sm: '!pb-50px',
35
- },
36
- },
37
- modal: {
38
- container: 'flex min-h-full items-center sm:items-center justify-center text-center',
39
- },
40
- notifications: {
41
- position: 'right-0',
42
- width: 'sm:!w-[420px]',
43
- },
44
- notification: {
45
- background: '!bg-[#031E22]',
46
- container: 'b-1 b-[#01292F/08]',
47
- rounded: 'rounded-8px',
48
- title: 'text-16px text-white font-semibold tracking--0.01em leading-20px',
49
- description: 'text-14px text-white/60 leading-1.08em',
50
- ring: 'ring-0',
51
- },
52
- toggle: {
53
- container: {
54
- base: 'pointer-events-none relative inline-block h-4 w-4 rounded-full bg-white dark:bg-gray-900 shadow ring-0 transition ease-in-out duration-200',
55
- },
56
- },
57
- tooltip: {
58
- popper: {
59
- arrow: true,
60
-
61
- },
62
- rounded: 'rounded-full',
63
- arrow: {
64
- ring: 'before:ring-[#000000]',
65
- background: 'before:!bg-[#000000]',
66
- },
67
- background: '!bg-[#01292F]',
68
- ring: '!ring-1 !ring-black',
69
- base: '[@media(pointer:coarse)]:hidden h-6 px-12px py-4px truncate relative text-10px font-semibold !text-white',
70
- shadow: 'shadow-none',
71
- },
72
- },
73
- })