@dolanske/vui 1.0.4 → 1.1.1

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.
Files changed (195) hide show
  1. package/LICENSE +673 -673
  2. package/README.md +42 -42
  3. package/dist/components/Accordion/Accordion.vue.d.ts +3 -2
  4. package/dist/components/Accordion/AccordionGroup.vue.d.ts +5 -2
  5. package/dist/components/Alert/Alert.vue.d.ts +3 -2
  6. package/dist/components/Avatar/Avatar.vue.d.ts +3 -2
  7. package/dist/components/Badge/Badge.vue.d.ts +3 -2
  8. package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +3 -2
  9. package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +3 -2
  10. package/dist/components/Button/Button.vue.d.ts +3 -2
  11. package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +3 -2
  12. package/dist/components/Calendar/Calendar.vue.d.ts +6 -6
  13. package/dist/components/Card/Card.vue.d.ts +4 -3
  14. package/dist/components/Checkbox/Checkbox.vue.d.ts +7 -6
  15. package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +2 -1
  16. package/dist/components/Divider/Divider.vue.d.ts +3 -2
  17. package/dist/components/Drawer/Drawer.vue.d.ts +10 -9
  18. package/dist/components/Dropdown/Dropdown.vue.d.ts +66 -3
  19. package/dist/components/Dropdown/DropdownItem.vue.d.ts +3 -2
  20. package/dist/components/Dropdown/DropdownTitle.vue.d.ts +6 -6
  21. package/dist/components/Flex/Flex.vue.d.ts +13 -12
  22. package/dist/components/Grid/Grid.vue.d.ts +7 -6
  23. package/dist/components/Input/Color.vue.d.ts +5 -5
  24. package/dist/components/Input/Counter.vue.d.ts +5 -5
  25. package/dist/components/Input/Dropzone.vue.d.ts +95 -10
  26. package/dist/components/Input/File.vue.d.ts +4 -3
  27. package/dist/components/Input/Input.vue.d.ts +7 -6
  28. package/dist/components/Input/Password.vue.d.ts +1 -1
  29. package/dist/components/Input/Textarea.vue.d.ts +7 -6
  30. package/dist/components/Kbd/Kbd.vue.d.ts +1 -1
  31. package/dist/components/Kbd/KbdGroup.vue.d.ts +2 -1
  32. package/dist/components/Modal/Confirm.vue.d.ts +7 -9
  33. package/dist/components/Modal/Modal.vue.d.ts +16 -13
  34. package/dist/components/OTP/OTP.vue.d.ts +7 -6
  35. package/dist/components/OTP/OTPItem.vue.d.ts +1 -1
  36. package/dist/components/Pagination/Pagination.vue.d.ts +3 -2
  37. package/dist/components/Popout/Popout.vue.d.ts +3 -2
  38. package/dist/components/Progress/Progress.vue.d.ts +5 -5
  39. package/dist/components/Radio/Radio.vue.d.ts +7 -6
  40. package/dist/components/Radio/RadioGroup.vue.d.ts +7 -6
  41. package/dist/components/Select/Select.vue.d.ts +4 -8
  42. package/dist/components/Sheet/Sheet.vue.d.ts +22 -13
  43. package/dist/components/Sidebar/Sidebar.vue.d.ts +7 -6
  44. package/dist/components/Skeleton/Skeleton.vue.d.ts +1 -1
  45. package/dist/components/Spinner/Spinner.vue.d.ts +1 -1
  46. package/dist/components/Switch/Switch.vue.d.ts +7 -6
  47. package/dist/components/Table/Cell.vue.d.ts +5 -2
  48. package/dist/components/Table/Head.vue.d.ts +3 -2
  49. package/dist/components/Table/Root.vue.d.ts +3 -2
  50. package/dist/components/Table/table.d.ts +2 -2
  51. package/dist/components/Tabs/Tab.vue.d.ts +3 -2
  52. package/dist/components/Tabs/Tabs.vue.d.ts +7 -6
  53. package/dist/components/Toast/toast.d.ts +6 -6
  54. package/dist/components/Tooltip/Tooltip.vue.d.ts +2 -1
  55. package/dist/internal/Backdrop/Backdrop.vue.d.ts +3 -2
  56. package/dist/vui.css +1 -0
  57. package/dist/vui.js +8090 -7884
  58. package/package.json +73 -72
  59. package/src/App.vue +95 -95
  60. package/src/components/Accordion/Accordion.vue +91 -91
  61. package/src/components/Accordion/AccordionGroup.vue +43 -43
  62. package/src/components/Accordion/accordion.scss +82 -82
  63. package/src/components/Alert/Alert.vue +59 -59
  64. package/src/components/Alert/alert.scss +161 -161
  65. package/src/components/Avatar/Avatar.vue +53 -53
  66. package/src/components/Avatar/avatar.scss +52 -52
  67. package/src/components/Badge/Badge.vue +21 -21
  68. package/src/components/Badge/badge.scss +210 -206
  69. package/src/components/Breadcrumbs/BreadcrumbItem.vue +26 -26
  70. package/src/components/Breadcrumbs/Breadcrumbs.vue +30 -30
  71. package/src/components/Breadcrumbs/breadcrumbs.scss +31 -31
  72. package/src/components/Button/Button.vue +85 -85
  73. package/src/components/Button/button.scss +279 -279
  74. package/src/components/ButtonGroup/ButtonGroup.vue +28 -28
  75. package/src/components/ButtonGroup/button-group.scss +51 -51
  76. package/src/components/Calendar/Calendar.vue +66 -66
  77. package/src/components/Calendar/calendar.scss +83 -83
  78. package/src/components/Card/Card.vue +48 -48
  79. package/src/components/Card/card.scss +53 -53
  80. package/src/components/Checkbox/Checkbox.vue +54 -54
  81. package/src/components/Checkbox/checkbox.scss +80 -80
  82. package/src/components/CopyClipboard/CopyClipboard.vue +91 -91
  83. package/src/components/CopyClipboard/copy-clipboard.scss +25 -25
  84. package/src/components/Divider/Divider.vue +44 -44
  85. package/src/components/Divider/divider.scss +35 -35
  86. package/src/components/Drawer/Drawer.vue +102 -97
  87. package/src/components/Drawer/drawer.scss +37 -37
  88. package/src/components/Dropdown/Dropdown.vue +135 -135
  89. package/src/components/Dropdown/DropdownItem.vue +33 -33
  90. package/src/components/Dropdown/DropdownTitle.vue +14 -14
  91. package/src/components/Dropdown/dropdown-item.scss +84 -84
  92. package/src/components/Dropdown/dropdown.scss +53 -53
  93. package/src/components/Flex/Flex.vue +113 -113
  94. package/src/components/Grid/Grid.vue +79 -80
  95. package/src/components/Input/Color.vue +26 -26
  96. package/src/components/Input/Counter.vue +66 -66
  97. package/src/components/Input/Dropzone.vue +65 -65
  98. package/src/components/Input/File.vue +15 -15
  99. package/src/components/Input/Input.vue +123 -123
  100. package/src/components/Input/Password.vue +35 -35
  101. package/src/components/Input/Textarea.vue +78 -78
  102. package/src/components/Input/input.scss +302 -302
  103. package/src/components/Kbd/Kbd.vue +48 -48
  104. package/src/components/Kbd/KbdGroup.vue +27 -27
  105. package/src/components/Kbd/kbd.scss +19 -19
  106. package/src/components/Modal/Confirm.vue +56 -56
  107. package/src/components/Modal/Modal.vue +103 -99
  108. package/src/components/Modal/modal.scss +54 -54
  109. package/src/components/OTP/OTP.vue +133 -133
  110. package/src/components/OTP/OTPItem.vue +37 -37
  111. package/src/components/OTP/otp.scss +84 -84
  112. package/src/components/Pagination/Pagination.vue +77 -77
  113. package/src/components/Pagination/pagination.ts +78 -78
  114. package/src/components/Popout/Popout.vue +52 -52
  115. package/src/components/Popout/popout.scss +15 -15
  116. package/src/components/Progress/Progress.vue +103 -103
  117. package/src/components/Progress/progress.scss +47 -47
  118. package/src/components/Radio/Radio.vue +38 -38
  119. package/src/components/Radio/RadioGroup.vue +40 -40
  120. package/src/components/Radio/radio.scss +78 -78
  121. package/src/components/Select/Select.vue +211 -211
  122. package/src/components/Select/select.scss +77 -77
  123. package/src/components/Sheet/Sheet.vue +108 -98
  124. package/src/components/Sheet/sheet.scss +69 -69
  125. package/src/components/Sidebar/Sidebar.vue +115 -115
  126. package/src/components/Sidebar/sidebar.scss +124 -124
  127. package/src/components/Skeleton/Skeleton.vue +43 -43
  128. package/src/components/Skeleton/skeleton.scss +14 -14
  129. package/src/components/Spinner/Spinner.vue +42 -42
  130. package/src/components/Spinner/spinner.scss +47 -47
  131. package/src/components/Switch/Switch.vue +31 -31
  132. package/src/components/Switch/switch.scss +93 -93
  133. package/src/components/Table/Cell.vue +23 -23
  134. package/src/components/Table/Head.vue +59 -59
  135. package/src/components/Table/Root.vue +66 -66
  136. package/src/components/Table/SelectAll.vue +23 -23
  137. package/src/components/Table/SelectRow.vue +30 -30
  138. package/src/components/Table/index.ts +7 -7
  139. package/src/components/Table/table.scss +154 -154
  140. package/src/components/Table/table.ts +248 -248
  141. package/src/components/Tabs/Tab.vue +25 -25
  142. package/src/components/Tabs/Tabs.vue +90 -90
  143. package/src/components/Tabs/tabs.scss +87 -87
  144. package/src/components/Toast/Toasts.vue +52 -52
  145. package/src/components/Toast/toast.scss +45 -45
  146. package/src/components/Toast/toast.ts +75 -75
  147. package/src/components/Tooltip/Tooltip.vue +86 -86
  148. package/src/components/Tooltip/tooltip.scss +8 -8
  149. package/src/examples/ExampleAccordions.vue +58 -58
  150. package/src/examples/ExampleAlerts.vue +78 -78
  151. package/src/examples/ExampleAvatars.vue +44 -44
  152. package/src/examples/ExampleBadges.vue +48 -48
  153. package/src/examples/ExampleBreadcrumbs.vue +46 -46
  154. package/src/examples/ExampleButtons.vue +140 -140
  155. package/src/examples/ExampleCalendars.vue +40 -40
  156. package/src/examples/ExampleCards.vue +94 -94
  157. package/src/examples/ExampleCheckboxes.vue +123 -123
  158. package/src/examples/ExampleCopyClipboard.vue +47 -47
  159. package/src/examples/ExampleDividers.vue +39 -39
  160. package/src/examples/ExampleDrawers.vue +67 -67
  161. package/src/examples/ExampleDropdowns.vue +114 -114
  162. package/src/examples/ExampleFlexGrid.vue +124 -122
  163. package/src/examples/ExampleInputs.vue +234 -234
  164. package/src/examples/ExampleKBD.vue +65 -65
  165. package/src/examples/ExampleModals.vue +143 -143
  166. package/src/examples/ExamplePalette.vue +159 -159
  167. package/src/examples/ExamplePopouts.vue +41 -41
  168. package/src/examples/ExampleSheets.vue +77 -77
  169. package/src/examples/ExampleSidebars.vue +270 -270
  170. package/src/examples/ExampleSkeletons.vue +26 -26
  171. package/src/examples/ExampleSpinners.vue +80 -78
  172. package/src/examples/ExampleTables.vue +195 -195
  173. package/src/examples/ExampleTabs.vue +119 -119
  174. package/src/examples/ExampleToasts.vue +96 -96
  175. package/src/examples/ExampleTooltips.vue +70 -70
  176. package/src/examples/shared/ExampleColor.vue +28 -28
  177. package/src/index.ts +116 -116
  178. package/src/internal/Backdrop/Backdrop.vue +22 -22
  179. package/src/internal/Backdrop/backdrop.scss +34 -34
  180. package/src/main.ts +5 -5
  181. package/src/shared/helpers.ts +117 -117
  182. package/src/shared/theme.ts +22 -22
  183. package/src/shared/types.ts +29 -29
  184. package/src/style/animation.scss +22 -22
  185. package/src/style/core.scss +119 -125
  186. package/src/style/layout.scss +207 -233
  187. package/src/style/media-query.scss +29 -29
  188. package/src/style/reset.scss +135 -135
  189. package/src/style/text.scss +137 -124
  190. package/src/style/theme.scss +195 -195
  191. package/src/style/tooltip.scss +146 -146
  192. package/src/style/typography.scss +415 -415
  193. package/src/style/utils.scss +36 -36
  194. package/src/style.scss +1 -1
  195. package/dist/style.css +0 -1
@@ -1,53 +1,53 @@
1
- <script setup lang="ts">
2
- import type { Sizes } from '../../shared/types'
3
- import { Icon } from '@iconify/vue'
4
- import { ref } from 'vue'
5
- import { formatUnitValue } from '../../shared/helpers'
6
- import { Size } from '../../shared/types'
7
- import './avatar.scss'
8
-
9
- interface Props {
10
- size?: Sizes | number
11
- url?: string
12
- fallback?: string
13
- icon?: string
14
- alt?: string
15
- }
16
-
17
- const {
18
- size = Size.m,
19
- url,
20
- fallback,
21
- alt = 'avatar',
22
- } = defineProps<Props>()
23
-
24
- const showFallback = ref(false)
25
- </script>
26
-
27
- <template>
28
- <div
29
- class="vui-avatar"
30
- :class="[`vui-avatar-size-${typeof size === 'number' ? 'l' : size}`]"
31
- :style="{
32
- ...(typeof size === 'number' && {
33
- '--avatar-size': formatUnitValue(size),
34
- }),
35
- }"
36
- >
37
- <span v-if="$slots.default">
38
- <slot />
39
- </span>
40
- <img
41
- v-else-if="url && !showFallback"
42
- :alt
43
- :src="url"
44
- @error="showFallback = true"
45
- >
46
- <strong v-else>
47
- <template v-if="showFallback">
48
- {{ fallback }}
49
- </template>
50
- <Icon v-else :icon="icon ?? 'ph:user'" />
51
- </strong>
52
- </div>
53
- </template>
1
+ <script setup lang="ts">
2
+ import type { Sizes } from '../../shared/types'
3
+ import { Icon } from '@iconify/vue'
4
+ import { ref } from 'vue'
5
+ import { formatUnitValue } from '../../shared/helpers'
6
+ import { Size } from '../../shared/types'
7
+ import './avatar.scss'
8
+
9
+ interface Props {
10
+ size?: Sizes | number
11
+ url?: string
12
+ fallback?: string
13
+ icon?: string
14
+ alt?: string
15
+ }
16
+
17
+ const {
18
+ size = Size.m,
19
+ url,
20
+ fallback,
21
+ alt = 'avatar',
22
+ } = defineProps<Props>()
23
+
24
+ const showFallback = ref(false)
25
+ </script>
26
+
27
+ <template>
28
+ <div
29
+ class="vui-avatar"
30
+ :class="[`vui-avatar-size-${typeof size === 'number' ? 'l' : size}`]"
31
+ :style="{
32
+ ...(typeof size === 'number' && {
33
+ '--avatar-size': formatUnitValue(size),
34
+ }),
35
+ }"
36
+ >
37
+ <span v-if="$slots.default">
38
+ <slot />
39
+ </span>
40
+ <img
41
+ v-else-if="url && !showFallback"
42
+ :alt
43
+ :src="url"
44
+ @error="showFallback = true"
45
+ >
46
+ <strong v-else>
47
+ <template v-if="showFallback">
48
+ {{ fallback }}
49
+ </template>
50
+ <Icon v-else :icon="icon ?? 'ph:user'" />
51
+ </strong>
52
+ </div>
53
+ </template>
@@ -1,52 +1,52 @@
1
- .vui-avatar {
2
- --avatar-size: 36px;
3
-
4
- &.vui-avatar-size-s {
5
- --avatar-size: 28px;
6
-
7
- strong {
8
- font-size: var(--font-size-xs);
9
- }
10
- }
11
-
12
- &.vui-avatar-size-l {
13
- --avatar-size: 48px;
14
-
15
- strong {
16
- font-size: var(--font-size-l);
17
- }
18
- }
19
-
20
- width: var(--avatar-size);
21
- height: var(--avatar-size);
22
- border-radius: 100%;
23
- display: flex;
24
- align-items: center;
25
- justify-content: center;
26
- overflow: hidden;
27
- background-color: var(--color-bg-raised);
28
- font-weight: 500;
29
-
30
- svg {
31
- color: var(--color-text-light);
32
- font-size: inherit;
33
- }
34
-
35
- strong {
36
- display: block;
37
- font-size: var(--font-size-m);
38
- line-height: 1;
39
- }
40
-
41
- img {
42
- display: block;
43
- height: 100%;
44
- width: 100%;
45
- object-position: center;
46
- object-fit: cover;
47
- }
48
-
49
- img[src=''] {
50
- display: none;
51
- }
52
- }
1
+ .vui-avatar {
2
+ --avatar-size: 36px;
3
+
4
+ &.vui-avatar-size-s {
5
+ --avatar-size: 28px;
6
+
7
+ strong {
8
+ font-size: var(--font-size-xs);
9
+ }
10
+ }
11
+
12
+ &.vui-avatar-size-l {
13
+ --avatar-size: 48px;
14
+
15
+ strong {
16
+ font-size: var(--font-size-l);
17
+ }
18
+ }
19
+
20
+ width: var(--avatar-size);
21
+ height: var(--avatar-size);
22
+ border-radius: 100%;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: center;
26
+ overflow: hidden;
27
+ background-color: var(--color-bg-raised);
28
+ font-weight: 500;
29
+
30
+ svg {
31
+ color: var(--color-text-light);
32
+ font-size: inherit;
33
+ }
34
+
35
+ strong {
36
+ display: block;
37
+ font-size: var(--font-size-m);
38
+ line-height: 1;
39
+ }
40
+
41
+ img {
42
+ display: block;
43
+ height: 100%;
44
+ width: 100%;
45
+ object-position: center;
46
+ object-fit: cover;
47
+ }
48
+
49
+ img[src=''] {
50
+ display: none;
51
+ }
52
+ }
@@ -1,21 +1,21 @@
1
- <script setup lang="ts">
2
- import './badge.scss'
3
-
4
- interface Props {
5
- variant?: 'neutral' | 'danger' | 'warning' | 'success' | 'info' | 'accent'
6
- outline?: boolean
7
- filled?: boolean
8
- }
9
-
10
- const {
11
- variant = 'neutral',
12
- outline,
13
- filled,
14
- } = defineProps<Props>()
15
- </script>
16
-
17
- <template>
18
- <div class="vui-badge" :class="[{ outline, filled }, `vui-badge-variant-${variant}`]">
19
- <slot />
20
- </div>
21
- </template>
1
+ <script setup lang="ts">
2
+ import './badge.scss'
3
+
4
+ interface Props {
5
+ variant?: 'neutral' | 'danger' | 'warning' | 'success' | 'info' | 'accent'
6
+ outline?: boolean
7
+ filled?: boolean
8
+ }
9
+
10
+ const {
11
+ variant = 'neutral',
12
+ outline,
13
+ filled,
14
+ } = defineProps<Props>()
15
+ </script>
16
+
17
+ <template>
18
+ <div class="vui-badge" :class="[{ outline, filled }, `vui-badge-variant-${variant}`]">
19
+ <slot />
20
+ </div>
21
+ </template>
@@ -1,206 +1,210 @@
1
- .vui-badge {
2
- display: inline-flex;
3
- gap: var(--space-s);
4
- place-items: center;
5
- height: 26px;
6
- padding-inline: var(--space-s);
7
- border-radius: 999px;
8
- font-size: var(--font-size-s);
9
- color: var(--color-text);
10
- border: 1px solid transparent;
11
-
12
- svg,
13
- path {
14
- color: var(--color-text);
15
- }
16
-
17
- &.filled {
18
- font-weight: 500;
19
- }
20
-
21
- &.vui-badge-variant-neutral {
22
- &:not(.outline) {
23
- background-color: var(--color-bg-raised);
24
-
25
- &.filled {
26
- background-color: var(--color-text);
27
- color: var(--color-text-invert);
28
- border-color: transparent;
29
- }
30
- }
31
-
32
- color: var(--color-text);
33
- // border: 1px solid var(--color-border);
34
- }
35
-
36
- &.vui-badge-variant-info {
37
- color: var(--color-text-blue);
38
-
39
- svg,
40
- path {
41
- color: var(--color-text-blue);
42
- }
43
-
44
- &:not(.outline) {
45
- background-color: hsla(from var(--color-bg-blue-raised) h s l / 0.2);
46
-
47
- &.filled {
48
- background-color: var(--color-text-blue);
49
- color: var(--color-text-invert);
50
-
51
- svg,
52
- path {
53
- color: var(--color-text-invert);
54
- }
55
- }
56
- }
57
-
58
- &.outline {
59
- border-color: var(--color-text-blue);
60
- }
61
- }
62
-
63
- &.vui-badge-variant-success {
64
- color: var(--color-text-green);
65
-
66
- svg,
67
- path {
68
- color: var(--color-text-green);
69
- }
70
-
71
- &:not(.outline) {
72
- background-color: hsla(from var(--color-bg-green-raised) h s l / 0.15);
73
-
74
- &.filled {
75
- background-color: var(--color-text-green);
76
- color: var(--color-text-invert);
77
-
78
- svg,
79
- path {
80
- color: var(--color-text-invert);
81
- }
82
- }
83
- }
84
-
85
- &.outline {
86
- border-color: var(--color-text-green);
87
- }
88
- }
89
-
90
- &.vui-badge-variant-warning {
91
- color: var(--color-text-yellow);
92
-
93
- svg,
94
- path {
95
- color: var(--color-text-yellow);
96
- }
97
-
98
- &:not(.outline) {
99
- background-color: hsla(from var(--color-bg-yellow-raised) h s l / 0.15);
100
-
101
- &.filled {
102
- background-color: var(--color-text-yellow);
103
- color: var(--color-text-invert);
104
-
105
- svg,
106
- path {
107
- color: var(--color-text-invert);
108
- }
109
- }
110
- }
111
-
112
- &.outline {
113
- border-color: var(--color-text-yellow);
114
- }
115
- }
116
-
117
- &.vui-badge-variant-danger {
118
- color: var(--color-text-red);
119
-
120
- svg,
121
- path {
122
- color: var(--color-text-red);
123
- }
124
-
125
- &:not(.outline) {
126
- background-color: hsla(from var(--color-bg-red-raised) h s l / 0.15);
127
-
128
- &.filled {
129
- background-color: var(--color-text-red);
130
- color: var(--color-text-invert);
131
-
132
- svg,
133
- path {
134
- color: var(--color-text-yellow);
135
- }
136
- }
137
- }
138
-
139
- &.outline {
140
- border-color: var(--color-text-red);
141
- }
142
-
143
- color: var(--color-text-red);
144
- }
145
-
146
- &.vui-badge-variant-accent {
147
- color: var(--color-accent);
148
-
149
- svg,
150
- path {
151
- color: var(--color-accent);
152
- }
153
-
154
- &:not(.outline) {
155
- background-color: hsla(from var(--color-bg-accent-raised) h s l / 0.15);
156
-
157
- &.filled {
158
- background-color: var(--color-accent);
159
- color: var(--color-text-invert);
160
-
161
- svg,
162
- path {
163
- color: var(--color-text-invert);
164
- }
165
- }
166
- }
167
-
168
- &.outline {
169
- border-color: var(--color-accent);
170
- }
171
- }
172
- }
173
-
174
- :root.light {
175
- .vui-badge.vui-badge-variant-accent:not(.outline).filled,
176
- .vui-badge.vui-badge-variant-warning:not(.outline).filled {
177
- color: var(--color-text);
178
-
179
- svg,
180
- path {
181
- color: var(--color-text);
182
- }
183
- }
184
-
185
- .vui-badge.vui-badge-variant-success:not(.filled, .outline) {
186
- background-color: hsla(from var(--color-text-green) h s l / 0.15);
187
- }
188
-
189
- .vui-badge.vui-badge-variant-warning:not(.outline).filled {
190
- background-color: var(--color-bg-yellow-raised);
191
- }
192
-
193
- .vui-badge.vui-badge-variant-success:not(.outline).filled {
194
- color: var(--color-text-invert);
195
- background-color: var(--color-text-green);
196
-
197
- svg,
198
- path {
199
- color: var(--color-text-invert);
200
- }
201
- }
202
-
203
- .vui-badge:not(.filled) {
204
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
205
- }
206
- }
1
+ .vui-badge {
2
+ --vui-badge-padding-block: 2px;
3
+ --vui-badge-padding-inline: var(--space-s);
4
+ --vui-badge-font-size: var(--font-size-s);
5
+
6
+ display: inline-flex;
7
+ gap: var(--space-xxs);
8
+ place-items: center;
9
+ padding-inline: var(--vui-badge-padding-inline);
10
+ padding-block: var(--vui-badge-padding-block);
11
+ border-radius: 999px;
12
+ font-size: var(--vui-badge-font-size);
13
+ color: var(--color-text);
14
+ border: 1px solid transparent;
15
+
16
+ svg,
17
+ path {
18
+ color: var(--color-text);
19
+ }
20
+
21
+ &.filled {
22
+ font-weight: 500;
23
+ }
24
+
25
+ &.vui-badge-variant-neutral {
26
+ &:not(.outline) {
27
+ background-color: var(--color-bg-raised);
28
+
29
+ &.filled {
30
+ background-color: var(--color-text);
31
+ color: var(--color-text-invert);
32
+ border-color: transparent;
33
+ }
34
+ }
35
+
36
+ color: var(--color-text);
37
+ // border: 1px solid var(--color-border);
38
+ }
39
+
40
+ &.vui-badge-variant-info {
41
+ color: var(--color-text-blue);
42
+
43
+ svg,
44
+ path {
45
+ color: var(--color-text-blue);
46
+ }
47
+
48
+ &:not(.outline) {
49
+ background-color: hsla(from var(--color-bg-blue-raised) h s l / 0.2);
50
+
51
+ &.filled {
52
+ background-color: var(--color-text-blue);
53
+ color: var(--color-text-invert);
54
+
55
+ svg,
56
+ path {
57
+ color: var(--color-text-invert);
58
+ }
59
+ }
60
+ }
61
+
62
+ &.outline {
63
+ border-color: var(--color-text-blue);
64
+ }
65
+ }
66
+
67
+ &.vui-badge-variant-success {
68
+ color: var(--color-text-green);
69
+
70
+ svg,
71
+ path {
72
+ color: var(--color-text-green);
73
+ }
74
+
75
+ &:not(.outline) {
76
+ background-color: hsla(from var(--color-bg-green-raised) h s l / 0.15);
77
+
78
+ &.filled {
79
+ background-color: var(--color-text-green);
80
+ color: var(--color-text-invert);
81
+
82
+ svg,
83
+ path {
84
+ color: var(--color-text-invert);
85
+ }
86
+ }
87
+ }
88
+
89
+ &.outline {
90
+ border-color: var(--color-text-green);
91
+ }
92
+ }
93
+
94
+ &.vui-badge-variant-warning {
95
+ color: var(--color-text-yellow);
96
+
97
+ svg,
98
+ path {
99
+ color: var(--color-text-yellow);
100
+ }
101
+
102
+ &:not(.outline) {
103
+ background-color: hsla(from var(--color-bg-yellow-raised) h s l / 0.15);
104
+
105
+ &.filled {
106
+ background-color: var(--color-text-yellow);
107
+ color: var(--color-text-invert);
108
+
109
+ svg,
110
+ path {
111
+ color: var(--color-text-invert);
112
+ }
113
+ }
114
+ }
115
+
116
+ &.outline {
117
+ border-color: var(--color-text-yellow);
118
+ }
119
+ }
120
+
121
+ &.vui-badge-variant-danger {
122
+ color: var(--color-text-red);
123
+
124
+ svg,
125
+ path {
126
+ color: var(--color-text-red);
127
+ }
128
+
129
+ &:not(.outline) {
130
+ background-color: hsla(from var(--color-bg-red-raised) h s l / 0.15);
131
+
132
+ &.filled {
133
+ background-color: var(--color-text-red);
134
+ color: var(--color-text-invert);
135
+
136
+ svg,
137
+ path {
138
+ color: var(--color-text-yellow);
139
+ }
140
+ }
141
+ }
142
+
143
+ &.outline {
144
+ border-color: var(--color-text-red);
145
+ }
146
+
147
+ color: var(--color-text-red);
148
+ }
149
+
150
+ &.vui-badge-variant-accent {
151
+ color: var(--color-accent);
152
+
153
+ svg,
154
+ path {
155
+ color: var(--color-accent);
156
+ }
157
+
158
+ &:not(.outline) {
159
+ background-color: hsla(from var(--color-bg-accent-raised) h s l / 0.15);
160
+
161
+ &.filled {
162
+ background-color: var(--color-accent);
163
+ color: var(--color-text-invert);
164
+
165
+ svg,
166
+ path {
167
+ color: var(--color-text-invert);
168
+ }
169
+ }
170
+ }
171
+
172
+ &.outline {
173
+ border-color: var(--color-accent);
174
+ }
175
+ }
176
+ }
177
+
178
+ :root.light {
179
+ .vui-badge.vui-badge-variant-accent:not(.outline).filled,
180
+ .vui-badge.vui-badge-variant-warning:not(.outline).filled {
181
+ color: var(--color-text);
182
+
183
+ svg,
184
+ path {
185
+ color: var(--color-text);
186
+ }
187
+ }
188
+
189
+ .vui-badge.vui-badge-variant-success:not(.filled, .outline) {
190
+ background-color: hsla(from var(--color-text-green) h s l / 0.15);
191
+ }
192
+
193
+ .vui-badge.vui-badge-variant-warning:not(.outline).filled {
194
+ background-color: var(--color-bg-yellow-raised);
195
+ }
196
+
197
+ .vui-badge.vui-badge-variant-success:not(.outline).filled {
198
+ color: var(--color-text-invert);
199
+ background-color: var(--color-text-green);
200
+
201
+ svg,
202
+ path {
203
+ color: var(--color-text-invert);
204
+ }
205
+ }
206
+
207
+ .vui-badge:not(.filled) {
208
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
209
+ }
210
+ }