@typlog/ui 0.11.0 → 0.11.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.
package/README.md CHANGED
@@ -1,79 +1,9 @@
1
1
  # @typlog/ui
2
2
 
3
- > Themed components for Radix Vue.
3
+ An open-source Vue component library optimized for fast development,
4
+ built on top of Reka UI and Radix Colors.
4
5
 
5
- ## Components
6
+ ## Credits
6
7
 
7
- ```js
8
- import {
9
- Avatar,
10
- Badge,
11
- Button,
12
- IconButton,
13
- Card,
14
- Separator,
15
- Inset,
16
- ScrollArea,
17
- SavingIndicator,
18
- Tooltip,
19
- Table,
20
- Quota,
21
- Spinner,
22
- Icon,
23
-
24
- // input
25
- Checkbox,
26
- CheckboxGroupRoot,
27
- CheckboxGroupItem,
28
- CheckboxGroupControl,
29
- Radio,
30
- RadioGroupRoot,
31
- RadioGroupItem,
32
- RadioCardsRoot,
33
- RadioCardsItem,
34
- SelectRoot,
35
- SelectContent,
36
- SelectTrigger,
37
- SelectItem,
38
- SelectLabel,
39
- SelectSeparator,
40
- SelectGroup,
41
- Switch,
42
- ColorField,
43
- TextField,
44
- TextArea,
45
- Turnstile,
46
- TabsRoot,
47
- TabsList,
48
- TabsTrigger,
49
- TabsContent,
50
- RadioTabsList,
51
- RadioTabsItem,
52
-
53
- // popper
54
- AlertDialogRoot,
55
- AlertDialogContent,
56
- AlertDialogTrigger,
57
- AlertDialogCancel,
58
- AlertDialogAction,
59
- AlertDialogTitle,
60
- AlertDialogDescription,
61
- DialogRoot,
62
- DialogContent,
63
- DialogTrigger,
64
- DialogClose,
65
- DialogHead,
66
- DialogTitle,
67
- DialogDescription,
68
- PopoverRoot,
69
- PopoverContent,
70
- PopoverTrigger,
71
- PopoverClose,
72
- PopoverAnchor,
73
- PopoverArrow,
74
- DropdownMenuRoot,
75
- DropdownMenuContent,
76
- DropdownMenuTrigger,
77
- DropdownMenuItem,
78
- } from '@typlog/ui'
79
- ```
8
+ - [Radix UI](https://radix-ui.com/)
9
+ - [Reka UI](https://reka-ui.com/)
@@ -425,7 +425,6 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
425
425
  minHeight: {},
426
426
  maxHeight: {},
427
427
  forceMount: { type: Boolean },
428
- trapFocus: { type: Boolean },
429
428
  disableOutsidePointerEvents: { type: Boolean },
430
429
  asChild: { type: Boolean },
431
430
  as: {}
@@ -509,7 +508,6 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
509
508
  minHeight: {},
510
509
  maxHeight: {},
511
510
  forceMount: { type: Boolean },
512
- trapFocus: { type: Boolean },
513
511
  disableOutsidePointerEvents: { type: Boolean },
514
512
  asChild: { type: Boolean },
515
513
  as: {}
@@ -1739,7 +1737,8 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
1739
1737
  }
1740
1738
  };
1741
1739
  watch(values, () => {
1742
- context.filterState.search = "";
1740
+ context.filterSearch.value = "";
1741
+ emits("update:modelValue", "");
1743
1742
  }, { deep: true });
1744
1743
  return (_ctx, _cache) => {
1745
1744
  return openBlock(), createBlock(unref(ComboboxAnchor), {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typlog/ui",
3
- "version": "0.11.0",
3
+ "version": "0.11.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Themed components for Reka UI.",
@@ -1,3 +1,4 @@
1
1
  @import "./space.css";
2
2
  @import "./colors.css";
3
+ @import "./shadow.css";
3
4
  @import "./breakpoints.css";
@@ -0,0 +1,8 @@
1
+ @theme {
2
+ --shadow-1: var(--shadow-1);
3
+ --shadow-2: var(--shadow-2);
4
+ --shadow-3: var(--shadow-3);
5
+ --shadow-4: var(--shadow-4);
6
+ --shadow-5: var(--shadow-5);
7
+ --shadow-6: var(--shadow-6);
8
+ }
File without changes