@una-ui/preset 0.52.0 → 0.53.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.
package/dist/index.d.ts CHANGED
@@ -6,4 +6,4 @@ interface unaUIOptions {
6
6
 
7
7
  declare function presetUna(options?: unaUIOptions): Preset;
8
8
 
9
- export = presetUna;
9
+ export { presetUna as default };
package/dist/index.mjs CHANGED
@@ -3,7 +3,7 @@ import { colors } from '@unocss/preset-mini/colors';
3
3
  import { fonts } from '@unocss/preset-mini/rules';
4
4
  import { handler, parseColor } from '@unocss/preset-mini/utils';
5
5
  import { mergeDeep } from 'unocss';
6
- import { s as shortcuts } from './shared/preset.DTW2IypE.mjs';
6
+ import { s as shortcuts } from './shared/preset.CHC6K3Xe.mjs';
7
7
 
8
8
  function presetUna(options = {
9
9
  // TODO: add options
@@ -74,7 +74,8 @@ function presetUna(options = {
74
74
  xl: "calc(var(--una-radius) + 4px)",
75
75
  lg: "var(--una-radius)",
76
76
  md: "calc(var(--una-radius) - 2px)",
77
- sm: "calc(var(--una-radius) - 4px)"
77
+ sm: "calc(var(--una-radius) - 4px)",
78
+ xs: "calc(var(--una-radius) - 6px)"
78
79
  },
79
80
  animation: {
80
81
  keyframes: {
@@ -1,3 +1,3 @@
1
1
  declare const _default: string[];
2
2
 
3
- export = _default;
3
+ export { _default as default };
package/dist/prefixes.mjs CHANGED
@@ -1,6 +1,16 @@
1
1
  const prefixes = [
2
2
  "accordion",
3
3
  "alert",
4
+ "alert-dialog",
5
+ "alert-dialog-action",
6
+ "alert-dialog-cancel",
7
+ "alert-dialog-content",
8
+ "alert-dialog-description",
9
+ "alert-dialog-footer",
10
+ "alert-dialog-header",
11
+ "alert-dialog-overlay",
12
+ "alert-dialog-title",
13
+ "alert-dialog-trigger",
4
14
  "aspect-ratio",
5
15
  "avatar",
6
16
  "avatar-fallback",
@@ -99,6 +109,9 @@ const prefixes = [
99
109
  "progress",
100
110
  "radio-group",
101
111
  "radio-group-item",
112
+ "resizable-handle",
113
+ "resizable-panel",
114
+ "resizable-panel-group",
102
115
  "resize",
103
116
  "rounded",
104
117
  "scroll-area",
@@ -66,6 +66,26 @@ const alert = [
66
66
  staticAlert
67
67
  ];
68
68
 
69
+ const staticAlertDialog = {
70
+ // base
71
+ "alert-dialog": "",
72
+ // sub-components
73
+ "alert-dialog-cancel": "mt-2 sm:mt-0",
74
+ "alert-dialog-overlay": "fixed inset-0 z-50 bg-black/80",
75
+ "alert-dialog-content": "bg-background fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
76
+ "alert-dialog-title": "text-lg font-semibold",
77
+ "alert-dialog-description": "text-muted text-sm",
78
+ "alert-dialog-header": "flex flex-col gap-2 text-center sm:text-left",
79
+ "alert-dialog-footer": "flex flex-col-reverse gap-2 sm:flex-row sm:justify-end"
80
+ };
81
+ const dynamicAlertDialog = [
82
+ // dynamic preset
83
+ ];
84
+ const alertDialog = [
85
+ ...dynamicAlertDialog,
86
+ staticAlertDialog
87
+ ];
88
+
69
89
  const staticAspectRatio = {
70
90
  // base
71
91
  "aspect-ratio": "overflow-hidden",
@@ -294,17 +314,17 @@ const staticCombobox = {
294
314
  "combobox-trigger-warning-icon": "i-warning",
295
315
  "combobox-trigger-trailing-icon": "i-lucide-chevrons-up-down",
296
316
  "combobox-input-leading-icon": "i-lucide-search",
297
- "combobox-trigger": "px-0.8571428571428571em w-full justify-between font-normal [&>span]:truncate",
298
- "combobox-trigger-trailing": "size-1.4285714285714286em data-[status=error]:text-error data-[status=success]:text-success data-[status=warning]:text-warning data-[status=info]:text-info data-[status=default]:(n-disabled size-1.1428571428571428em) rtl:mr-auto ltr:ml-auto",
317
+ "combobox-trigger": "px-0.8571428571428571em min-w-200px w-full justify-between font-normal [&>span]:truncate",
318
+ "combobox-trigger-trailing": "size-1.1428571428571428em data-[status=error]:text-error data-[status=success]:text-success data-[status=warning]:text-warning data-[status=info]:text-info data-[status=default]:(n-disabled) rtl:mr-auto ltr:ml-auto",
299
319
  "combobox-trigger-leading": "size-1.1428571428571428em",
300
- "combobox-item": "data-[highlighted]:bg-accent data-[highlighted]:text-accent relative flex cursor-default items-center gap-2 rounded-sm px-0.5714285714285714em py-0.42857142857142855em text-sm outline-none select-none data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50",
320
+ "combobox-item": "data-[highlighted]:bg-accent data-[highlighted]:text-accent relative flex cursor-default items-center gap-2 rounded-sm px-0.5em py-0.375em text-1em outline-none select-none data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50",
301
321
  "combobox-item-indicator": "ml-auto",
302
322
  "combobox-item-indicator-icon": "",
303
323
  "combobox-item-indicator-icon-name": "i-check",
304
- "combobox-anchor": "min-w-200px",
305
- "combobox-empty": "py-1.7142857142857142em text-center text-0.8571428571428571em",
324
+ "combobox-anchor": "w-full",
325
+ "combobox-empty": "py-1.7142857142857142em text-center text-1em leading-1.4285714285714286em",
306
326
  "combobox-group": "overflow-hidden p-0.2857142857142857em text-foreground",
307
- "combobox-label": "px-0.6666666666666666em py-0.5em text-0.8571428571428571em text-muted font-medium",
327
+ "combobox-label": "px-0.6666666666666666em py-0.5em text-0.8571428571428571em leading-1.1428571428571428em text-muted font-medium px-2",
308
328
  "combobox-list": "z-50 w-[--reka-popper-anchor-width] rounded-md border bg-popover text-popover overflow-hidden shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
309
329
  "combobox-separator": "bg-border -mx-1 h-px",
310
330
  "combobox-viewport": "max-h-300px scroll-py-1 overflow-x-hidden overflow-y-auto"
@@ -322,7 +342,7 @@ const staticDialog = {
322
342
  "dialog": "",
323
343
  // sub-components
324
344
  "dialog-overlay": "fixed inset-0 z-50 bg-black/80",
325
- "dialog-content": "fixed left-1/2 top-1/2 z-50 grid w-full max-w-lg -translate-x-1/2 -translate-y-1/2 gap-4 border border-base bg-base p-6 shadow-lg duration-200 sm:rounded-lg",
345
+ "dialog-content": "bg-background fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
326
346
  "dialog-scroll-overlay": "fixed inset-0 z-50 grid place-items-center overflow-y-auto bg-black/80",
327
347
  "dialog-scroll-content": "relative z-50 grid w-full max-w-lg my-8 gap-4 border border-base bg-base p-6 shadow-lg duration-200 sm:rounded-lg md:w-full",
328
348
  "dialog-header": "flex flex-col gap-y-1.5 text-center sm:text-left",
@@ -743,6 +763,29 @@ const radioGroup = [
743
763
  staticRadioGroup
744
764
  ];
745
765
 
766
+ const staticResizable = {
767
+ // config
768
+ "resizable-handle-icon-name": "i-lucide-grip-vertical",
769
+ // base
770
+ "resizable-panel-group": "flex h-full w-full data-[orientation=vertical]:flex-col",
771
+ "resizable-panel": "",
772
+ "resizable-handle": "relative flex w-px items-center justify-center after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:ring-offset-1 focus-visible:ring-offset-base focus-visible:outline-none data-[orientation=vertical]:h-px data-[orientation=vertical]:w-full data-[orientation=vertical]:after:left-0 data-[orientation=vertical]:after:h-1 data-[orientation=vertical]:after:w-full data-[orientation=vertical]:after:-translate-y-1/2 data-[orientation=vertical]:after:translate-x-0 [&[data-orientation=vertical]>div]:rotate-90",
773
+ "resizable-handle-icon-wrapper": "bg-border z-10 flex h-4 w-3 items-center justify-center rounded-xs border",
774
+ "resizable-handle-icon": "square-2.5",
775
+ // static variants
776
+ "resizable-handle-solid-gray": "bg-border focus-visible:ring-foreground/58",
777
+ "resizable-handle-solid-black": "bg-inverted focus-visible:ring-foreground/58",
778
+ "resizable-handle-outline-gray": "ring-1 ring-base focus-visible:ring-foreground/58"
779
+ };
780
+ const dynamicResizable = [
781
+ [/^resizable-handle-solid(-(\S+))?$/, ([, , c = "gray"]) => `bg-${c}-200 dark:bg-${c}-700/58 focus-visible:ring-${c}-200 dark:focus-visible:ring-${c}-700/58`],
782
+ [/^resizable-handle-outline(-(\S+))?$/, ([, , c = "gray"]) => `ring-1 ring-${c}-200 dark:ring-${c}-700/58 focus-visible:ring-${c}-200 dark:focus-visible:ring-${c}-700/58`]
783
+ ];
784
+ const resizable = [
785
+ ...dynamicResizable,
786
+ staticResizable
787
+ ];
788
+
746
789
  const staticScrollArea = {
747
790
  // configurations
748
791
  "scroll-area": "",
@@ -782,7 +825,7 @@ const staticSelect = {
782
825
  // components
783
826
  "select-trigger": "px-0.8571428571428571em w-full [&>span]:truncate",
784
827
  "select-trigger-trailing-icon": "i-lucide-chevron-down",
785
- "select-trigger-trailing": "size-1.1428571428571428em data-[status=error]:text-error data-[status=success]:text-success data-[status=warning]:text-warning data-[status=info]:text-info data-[status=default]:(n-disabled size-1.1428571428571428em) rtl:mr-auto ltr:ml-auto",
828
+ "select-trigger-trailing": "size-1.1428571428571428em data-[status=error]:text-error data-[status=success]:text-success data-[status=warning]:text-warning data-[status=info]:text-info data-[status=default]:(n-disabled) rtl:mr-auto ltr:ml-auto",
786
829
  "select-trigger-leading": "size-1.1428571428571428em",
787
830
  "select-value": "text-1em data-[status=error]:text-error-active data-[status=success]:text-success-active data-[status=warning]:text-warning-active data-[status=info]:text-info-active data-[placeholder]:n-disabled",
788
831
  "select-content": "relative z-50 max-h-96 min-w-32 overflow-hidden rounded-md border border-base bg-popover text-popover shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
@@ -1182,6 +1225,8 @@ const shortcuts = [
1182
1225
  ...navigationMenu,
1183
1226
  ...sidebar,
1184
1227
  ...aspectRatio,
1228
+ ...resizable,
1229
+ ...alertDialog,
1185
1230
  ...combobox
1186
1231
  ];
1187
1232
 
@@ -1,3 +1,3 @@
1
- export { s as shortcuts } from './shared/preset.DTW2IypE.mjs';
1
+ export { s as shortcuts } from './shared/preset.CHC6K3Xe.mjs';
2
2
  import '@unocss/preset-mini/utils';
3
3
  import '@unocss/preset-mini';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@una-ui/preset",
3
- "version": "0.52.0",
3
+ "version": "0.53.0",
4
4
  "description": "The default preset for @una-ui",
5
5
  "author": "Phojie Rengel <phojrengel@gmail.com>",
6
6
  "license": "MIT",
@@ -22,22 +22,18 @@
22
22
  "exports": {
23
23
  ".": {
24
24
  "types": "./dist/index.d.ts",
25
- "import": "./dist/index.mjs",
26
- "require": "./dist/index.cjs"
25
+ "import": "./dist/index.mjs"
27
26
  },
28
27
  "./shortcuts": {
29
28
  "types": "./dist/shortcuts.d.ts",
30
- "import": "./dist/shortcuts.mjs",
31
- "require": "./dist/shortcuts.cjs"
29
+ "import": "./dist/shortcuts.mjs"
32
30
  },
33
31
  "./prefixes": {
34
32
  "types": "./dist/prefixes.d.ts",
35
- "import": "./dist/prefixes.mjs",
36
- "require": "./dist/prefixes.cjs"
33
+ "import": "./dist/prefixes.mjs"
37
34
  },
38
35
  "./*": "./*"
39
36
  },
40
- "main": "dist/index.cjs",
41
37
  "module": "dist/index.mjs",
42
38
  "types": "dist/index.d.ts",
43
39
  "files": [
package/dist/index.cjs DELETED
@@ -1,155 +0,0 @@
1
- 'use strict';
2
-
3
- const presetMini = require('@unocss/preset-mini');
4
- const colors = require('@unocss/preset-mini/colors');
5
- const rules = require('@unocss/preset-mini/rules');
6
- const utils = require('@unocss/preset-mini/utils');
7
- const unocss = require('unocss');
8
- const index = require('./shared/preset.CXnwVyzt.cjs');
9
-
10
- function presetUna(options = {
11
- // TODO: add options
12
- }) {
13
- return {
14
- name: "@una-ui/preset",
15
- options,
16
- shortcuts: index.shortcuts,
17
- theme: unocss.mergeDeep(presetMini.theme, {
18
- container: {
19
- center: true,
20
- padding: "2rem",
21
- maxWidth: {
22
- "2xl": "1400px"
23
- }
24
- },
25
- colors: {
26
- background: "rgba(var(--una-background) / <alpha-value>)",
27
- foreground: "rgba(var(--una-foreground) / <alpha-value>)",
28
- brand: "rgba(var(--una-brand) / <alpha-value>)",
29
- input: "rgba(var(--una-input) / <alpha-value>)",
30
- primary: {
31
- DEFAULT: "rgba(var(--una-primary) / <alpha-value>)",
32
- active: "rgba(var(--una-primary-active) / <alpha-value>)",
33
- 50: "rgba(var(--una-primary-50) / <alpha-value>)",
34
- 100: "rgba(var(--una-primary-100) / <alpha-value>)",
35
- 200: "rgba(var(--una-primary-200) / <alpha-value>)",
36
- 300: "rgba(var(--una-primary-300) / <alpha-value>)",
37
- 400: "rgba(var(--una-primary-400) / <alpha-value>)",
38
- 500: "rgba(var(--una-primary-500) / <alpha-value>)",
39
- 600: "rgba(var(--una-primary-600) / <alpha-value>)",
40
- 700: "rgba(var(--una-primary-700) / <alpha-value>)",
41
- 800: "rgba(var(--una-primary-800) / <alpha-value>)",
42
- 900: "rgba(var(--una-primary-900) / <alpha-value>)",
43
- 950: "rgba(var(--una-primary-950) / <alpha-value>)"
44
- },
45
- gray: {
46
- DEFAULT: "rgba(var(--una-gray) / <alpha-value>)",
47
- active: "rgba(var(--una-gray-active) / <alpha-value>)",
48
- 50: "rgba(var(--una-gray-50) / <alpha-value>)",
49
- 100: "rgba(var(--una-gray-100) / <alpha-value>)",
50
- 200: "rgba(var(--una-gray-200) / <alpha-value>)",
51
- 300: "rgba(var(--una-gray-300) / <alpha-value>)",
52
- 400: "rgba(var(--una-gray-400) / <alpha-value>)",
53
- 500: "rgba(var(--una-gray-500) / <alpha-value>)",
54
- 600: "rgba(var(--una-gray-600) / <alpha-value>)",
55
- 700: "rgba(var(--una-gray-700) / <alpha-value>)",
56
- 800: "rgba(var(--una-gray-800) / <alpha-value>)",
57
- 900: "rgba(var(--una-gray-900) / <alpha-value>)",
58
- 950: "rgba(var(--una-gray-950) / <alpha-value>)"
59
- },
60
- sidebar: {
61
- DEFAULT: "rgba(var(--una-sidebar) / <alpha-value>)",
62
- foreground: "rgba(var(--una-sidebar-foreground) / <alpha-value>)",
63
- primary: "rgba(var(--una-sidebar-primary) / <alpha-value>)",
64
- primaryForeground: "rgba(var(--una-sidebar-primary-foreground) / <alpha-value>)",
65
- accent: "rgba(var(--una-sidebar-accent) / <alpha-value>)",
66
- accentForeground: "rgba(var(--una-sidebar-accent-foreground) / <alpha-value>)",
67
- border: "rgba(var(--una-sidebar-border) / <alpha-value>)",
68
- ring: "rgba(var(--una-sidebar-ring) / <alpha-value>)"
69
- },
70
- error: colors.colors.red,
71
- success: colors.colors.green,
72
- warning: colors.colors.amber,
73
- info: colors.colors.blue
74
- },
75
- borderRadius: {
76
- xl: "calc(var(--una-radius) + 4px)",
77
- lg: "var(--una-radius)",
78
- md: "calc(var(--una-radius) - 2px)",
79
- sm: "calc(var(--una-radius) - 4px)"
80
- },
81
- animation: {
82
- keyframes: {
83
- "collapsible-down": "{from{height: 0}to{height:var(--reka-collapsible-content-height)}}",
84
- "collapsible-up": "{from{height:var(--reka-collapsible-content-height)}to{height: 0}}",
85
- "fadeIn": "{from{ opacity: 0 }to{ opacity: 1 }}",
86
- "fadeOut": "{from{ opacity: 1 }to{ opacity: 0 }}"
87
- },
88
- durations: {
89
- "collapsible-down": "0.2s",
90
- "collapsible-up": "0.2s",
91
- "fadeIn": "0.2s",
92
- "fadeOut": "0.2s"
93
- },
94
- timingFns: {
95
- "collapsible-down": "ease-in-out",
96
- "collapsible-up": "ease-in-out",
97
- "fadeIn": "ease-out",
98
- "fadeOut": "ease-out"
99
- }
100
- }
101
- }),
102
- rules: [
103
- [/^n-(.*)$/, ([, body], { theme }) => {
104
- const color = utils.parseColor(body, theme);
105
- if ((color?.cssColor?.type === "rgb" || color?.cssColor?.type === "rgba") && color.cssColor.components) {
106
- return {
107
- "--una-brand": `${color.cssColor.components.join(",")}`
108
- };
109
- }
110
- }],
111
- [/^size-(.*)$/, rules.fonts[1][1]],
112
- [/^square-(min-|max-)?(.+)$/, ([, _m, s]) => ({
113
- width: utils.handler.bracket.cssvar.global.auto.fraction.rem(s),
114
- height: utils.handler.bracket.cssvar.global.auto.fraction.rem(s)
115
- })],
116
- ["n-disabled", {
117
- "opacity": 0.5,
118
- "pointer-events": "none"
119
- }]
120
- ],
121
- variants: [
122
- (input) => {
123
- const prefix = "n-disabled:";
124
- if (input.startsWith(prefix)) {
125
- return {
126
- matcher: input.slice(prefix.length),
127
- selector: (input2) => `[disabled] ${input2}, ${input2}[disabled]`
128
- };
129
- }
130
- },
131
- (input) => {
132
- const prefix = "n-checked:";
133
- if (input.startsWith(prefix)) {
134
- return {
135
- matcher: input.slice(prefix.length),
136
- selector: (input2) => `[checked] ${input2}, ${input2}[checked]`
137
- };
138
- }
139
- }
140
- ],
141
- preflights: [
142
- {
143
- getCSS: () => `
144
- *:focus-visible {
145
- outline: 2px solid rgb(var(--una-primary)); /* 2 */
146
- border-radius: 0.25rem; /* 1 */
147
- outline-offset: 0.10rem; /* 1 */
148
- }
149
- `
150
- }
151
- ]
152
- };
153
- }
154
-
155
- module.exports = presetUna;
package/dist/index.d.cts DELETED
@@ -1,9 +0,0 @@
1
- import { Preset } from 'unocss';
2
-
3
- interface unaUIOptions {
4
- primary?: [];
5
- }
6
-
7
- declare function presetUna(options?: unaUIOptions): Preset;
8
-
9
- export = presetUna;
package/dist/prefixes.cjs DELETED
@@ -1,195 +0,0 @@
1
- 'use strict';
2
-
3
- const prefixes = [
4
- "accordion",
5
- "alert",
6
- "aspect-ratio",
7
- "avatar",
8
- "avatar-fallback",
9
- "avatar-group",
10
- "avatar-image",
11
- "badge",
12
- "breadcrumb",
13
- "breadcrumb-active",
14
- "breadcrumb-inactive",
15
- "breadcrumb-ellipsis",
16
- "breadcrumb-item",
17
- "breadcrumb-link",
18
- "breadcrumb-list",
19
- "breadcrumb-page",
20
- "breadcrumb-root",
21
- "breadcrumb-separator",
22
- "btn",
23
- "button",
24
- "card",
25
- "card-content",
26
- "card-description",
27
- "card-footer",
28
- "card-header",
29
- "card-title",
30
- "checkbox",
31
- "collapsible",
32
- "collapsible-content",
33
- "collapsible-trigger",
34
- "combobox",
35
- "combobox-anchor",
36
- "combobox-empty",
37
- "combobox-group",
38
- "combobox-input",
39
- "combobox-item",
40
- "combobox-item-indicator",
41
- "combobox-label",
42
- "combobox-list",
43
- "combobox-separator",
44
- "combobox-trigger",
45
- "combobox-viewport",
46
- "dialog",
47
- "dialog-close",
48
- "dialog-content",
49
- "dialog-description",
50
- "dialog-footer",
51
- "dialog-header",
52
- "dialog-overlay",
53
- "dialog-scroll-content",
54
- "dialog-title",
55
- "dropdown-menu",
56
- "dropdown-menu-content",
57
- "dropdown-menu-group",
58
- "dropdown-menu-item",
59
- "dropdown-menu-label",
60
- "dropdown-menu-root",
61
- "dropdown-menu-separator",
62
- "dropdown-menu-shortcut",
63
- "dropdown-menu-sub",
64
- "dropdown-menu-sub-content",
65
- "dropdown-menu-sub-trigger",
66
- "dropdown-menu-trigger",
67
- "form-control",
68
- "form-description",
69
- "form-field",
70
- "form-group",
71
- "form-item",
72
- "form-label",
73
- "form-message",
74
- "icon",
75
- "indicator",
76
- "input",
77
- "kbd",
78
- "label",
79
- "link",
80
- "navigation-menu",
81
- "navigation-menu-content",
82
- "navigation-menu-content-item",
83
- "navigation-menu-indicator",
84
- "navigation-menu-item",
85
- "navigation-menu-link",
86
- "navigation-menu-list",
87
- "navigation-menu-trigger",
88
- "navigation-menu-viewport",
89
- "pagination",
90
- "pagination-ellipsis",
91
- "pagination-selected",
92
- "pagination-unselected",
93
- "pagination-ellipsis",
94
- "pagination-first",
95
- "pagination-last",
96
- "pagination-list-item",
97
- "pagination-next",
98
- "pagination-prev",
99
- "popover",
100
- "popover-content",
101
- "progress",
102
- "radio-group",
103
- "radio-group-item",
104
- "resize",
105
- "rounded",
106
- "scroll-area",
107
- "scroll-bar",
108
- "select",
109
- "select-content",
110
- "select-group",
111
- "select-item",
112
- "select-item-indicator",
113
- "select-item-text",
114
- "select-label",
115
- "select-scroll-down-button",
116
- "select-scroll-up-button",
117
- "select-separator",
118
- "select-trigger",
119
- "select-value",
120
- "separator",
121
- "sheet",
122
- "sheet-close",
123
- "sheet-content",
124
- "sheet-description",
125
- "sheet-footer",
126
- "sheet-header",
127
- "sheet-title",
128
- "sheet-trigger",
129
- "sidebar",
130
- "sidebar-content",
131
- "sidebar-footer",
132
- "sidebar-group",
133
- "sidebar-group-action",
134
- "sidebar-group-content",
135
- "sidebar-group-label",
136
- "sidebar-header",
137
- "sidebar-input",
138
- "sidebar-inset",
139
- "sidebar-menu",
140
- "sidebar-menu-action",
141
- "sidebar-menu-badge",
142
- "sidebar-menu-button",
143
- "sidebar-menu-button-child",
144
- "sidebar-menu-item",
145
- "sidebar-menu-skeleton",
146
- "sidebar-menu-sub",
147
- "sidebar-menu-sub-button",
148
- "sidebar-menu-sub-item",
149
- "sidebar-provider",
150
- "sidebar-rail",
151
- "sidebar-separator",
152
- "sidebar-trigger",
153
- "size",
154
- "skeleton",
155
- "slider",
156
- "square",
157
- "switch",
158
- "switch-checked",
159
- "switch-unchecked",
160
- "table",
161
- "table-body",
162
- "table-caption",
163
- "table-cell",
164
- "table-empty",
165
- "table-footer",
166
- "table-head",
167
- "table-header",
168
- "table-loading",
169
- "table-row",
170
- "tabs",
171
- "tabs-content",
172
- "tabs-list",
173
- "tabs-root",
174
- "tabs-trigger",
175
- "theme-switcher",
176
- "toast",
177
- "toast-action",
178
- "toast-close",
179
- "toast-description",
180
- "toaster",
181
- "toast-info",
182
- "toast-provider",
183
- "toast-title",
184
- "toast-viewport",
185
- "toggle",
186
- "toggle-off",
187
- "toggle-on",
188
- "tooltip",
189
- "tooltip-content",
190
- "tooltip-provider",
191
- "tooltip-root",
192
- "tooltip-trigger"
193
- ];
194
-
195
- module.exports = prefixes;
@@ -1,3 +0,0 @@
1
- declare const _default: string[];
2
-
3
- export = _default;