@onereach/ui-components-vue2 26.2.1 → 26.2.2-beta.5850.0

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.
@@ -21,21 +21,21 @@ const ButtonVariants = {
21
21
  // Layout
22
22
  'layout-inline-row justify-center',
23
23
  // Box
24
- 'min-w-[96px]',
24
+ 'min-w-[theme(tokens.min-button-width)]',
25
25
  // Spacing
26
26
  'px-md md:px-md', 'py-sm+ md:py-sm'],
27
27
  [ButtonVariant.Outlined]: [
28
28
  // Layout
29
29
  'layout-inline-row justify-center',
30
30
  // Box
31
- 'min-w-[96px]',
31
+ 'min-w-[theme(tokens.min-button-width)]',
32
32
  // Spacing
33
33
  'px-md* md:px-md*', 'py-sm+* md:py-sm*'],
34
34
  [ButtonVariant.Text]: [
35
35
  // Layout
36
36
  'layout-inline-row justify-center',
37
37
  // Box
38
- 'min-w-[96px]',
38
+ 'min-w-[theme(tokens.min-button-width)]',
39
39
  // Spacing
40
40
  'px-md md:px-md', 'py-sm+ md:py-sm'],
41
41
  [ButtonVariant.Link]: [
@@ -41,7 +41,7 @@ const Confirm = [
41
41
  // Layout
42
42
  'layout-column',
43
43
  // Box
44
- 'w-full md:w-[320px]',
44
+ 'w-full md:w-[theme(tokens.confirm-dialog-width)]',
45
45
  // Spacing
46
46
  'px-lg', 'py-lg', 'gap-md',
47
47
  // Shape
@@ -77,7 +77,7 @@ const ConfirmFooterButtons = [
77
77
  // Layout
78
78
  '!grow',
79
79
  // Box
80
- 'w-auto md:w-[128px]'];
80
+ 'w-auto md:w-[theme(tokens.confirm-dialog-action-width)]'];
81
81
 
82
82
  var script = defineComponent({
83
83
  name: 'OrConfirm',
@@ -651,7 +651,7 @@ const SelectDropdown = [
651
651
  // Overflow
652
652
  'overflow-y-auto',
653
653
  // Box
654
- 'max-h-[172px]',
654
+ 'max-h-[theme(tokens.max-select-dropdown-height)]',
655
655
  // equals 5 items
656
656
  // Theme
657
657
  'theme-background-default', 'dark:theme-background-default-dark', 'theme-border-outline border-1', 'dark:theme-border-outline-dark'];
@@ -56,7 +56,7 @@ const Toast = [
56
56
  // Layout
57
57
  'layout-row',
58
58
  // Box
59
- 'w-[343px] md:w-[512px]',
59
+ 'w-[theme(tokens.mobile-toast-width)] md:w-[theme(tokens.desktop-toast-width)]',
60
60
  // Shape
61
61
  'rounded-md',
62
62
  // Spacing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/ui-components-vue2",
3
- "version": "26.2.1",
3
+ "version": "26.2.2-beta.5850.0",
4
4
  "description": "Vue components library for v2",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
@@ -40,8 +40,8 @@
40
40
  "@codemirror/view": "^6",
41
41
  "@floating-ui/dom": "1.5.3",
42
42
  "@lezer/highlight": "*",
43
- "@onereach/styles": "^26.2.1",
44
- "@onereach/ui-components-common": "^26.2.1",
43
+ "@onereach/styles": "^26.2.2-beta.5850.0",
44
+ "@onereach/ui-components-common": "^26.2.2-beta.5850.0",
45
45
  "@splidejs/splide": "4.0.6",
46
46
  "@tiptap/core": "2.0.3",
47
47
  "@tiptap/extension-blockquote": "2.0.3",
@@ -102,6 +102,5 @@
102
102
  "publishConfig": {
103
103
  "access": "public"
104
104
  },
105
- "npmUnpacked": "4.15.2",
106
- "gitHead": "33b563263047ca8b24c122f8b47c709cae951614"
105
+ "npmUnpacked": "4.15.2"
107
106
  }