@shwfed/nuxt 0.7.9 → 0.7.11
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/module.json +1 -1
- package/dist/runtime/components/app.d.vue.ts +7 -56
- package/dist/runtime/components/app.vue +17 -404
- package/dist/runtime/components/app.vue.d.ts +7 -56
- package/dist/runtime/components/fields.d.vue.ts +154 -132
- package/dist/runtime/components/fields.vue +30 -295
- package/dist/runtime/components/fields.vue.d.ts +154 -132
- package/dist/runtime/components/table.d.vue.ts +129 -59
- package/dist/runtime/components/table.vue +51 -617
- package/dist/runtime/components/table.vue.d.ts +129 -59
- package/dist/runtime/components/ui/app/App.d.vue.ts +86 -0
- package/dist/runtime/components/ui/app/App.vue +414 -0
- package/dist/runtime/components/ui/app/App.vue.d.ts +86 -0
- package/dist/runtime/components/ui/checkbox/Checkbox.vue +6 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.vue +1 -1
- package/dist/runtime/components/ui/expression-editor/ExpressionEditor.d.vue.ts +30 -0
- package/dist/runtime/components/ui/expression-editor/ExpressionEditor.vue +87 -0
- package/dist/runtime/components/ui/expression-editor/ExpressionEditor.vue.d.ts +30 -0
- package/dist/runtime/components/ui/expression-editor/index.d.ts +1 -0
- package/dist/runtime/components/ui/expression-editor/index.js +1 -0
- package/dist/runtime/components/ui/field/FieldContent.vue +1 -1
- package/dist/runtime/components/ui/field/FieldError.vue +2 -2
- package/dist/runtime/components/ui/field/FieldLabel.vue +1 -1
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +376 -0
- package/dist/runtime/components/ui/fields/Fields.vue +441 -0
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +376 -0
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +163 -0
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +363 -0
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +163 -0
- package/dist/runtime/components/ui/icon-picker/IconPicker.d.vue.ts +15 -0
- package/dist/runtime/components/ui/icon-picker/IconPicker.vue +178 -0
- package/dist/runtime/components/ui/icon-picker/IconPicker.vue.d.ts +15 -0
- package/dist/runtime/components/ui/icon-picker/index.d.ts +1 -0
- package/dist/runtime/components/ui/icon-picker/index.js +1 -0
- package/dist/runtime/components/ui/input/Input.d.vue.ts +1 -0
- package/dist/runtime/components/ui/input/Input.vue +2 -0
- package/dist/runtime/components/ui/input/Input.vue.d.ts +1 -0
- package/dist/runtime/components/ui/input-group/InputGroupAddon.vue +4 -1
- package/dist/runtime/components/ui/input-group/InputGroupCombobox.d.vue.ts +8 -3
- package/dist/runtime/components/ui/input-group/InputGroupCombobox.vue +8 -3
- package/dist/runtime/components/ui/input-group/InputGroupCombobox.vue.d.ts +8 -3
- package/dist/runtime/components/ui/input-group/InputGroupComboboxInput.d.vue.ts +8 -1
- package/dist/runtime/components/ui/input-group/InputGroupComboboxInput.vue +11 -2
- package/dist/runtime/components/ui/input-group/InputGroupComboboxInput.vue.d.ts +8 -1
- package/dist/runtime/components/ui/input-group/InputGroupInput.vue +1 -1
- package/dist/runtime/components/ui/input-group/InputGroupNumberField.d.vue.ts +5 -2
- package/dist/runtime/components/ui/input-group/InputGroupNumberField.vue +10 -4
- package/dist/runtime/components/ui/input-group/InputGroupNumberField.vue.d.ts +5 -2
- package/dist/runtime/components/ui/input-group/InputGroupTextarea.vue +1 -1
- package/dist/runtime/components/ui/input-group/index.js +1 -1
- package/dist/runtime/components/ui/locale/Locale.d.vue.ts +20 -0
- package/dist/runtime/components/ui/locale/Locale.vue +291 -0
- package/dist/runtime/components/ui/locale/Locale.vue.d.ts +20 -0
- package/dist/runtime/components/ui/locale/index.d.ts +1 -0
- package/dist/runtime/components/ui/locale/index.js +1 -0
- package/dist/runtime/components/ui/native-select/NativeSelect.d.vue.ts +2 -2
- package/dist/runtime/components/ui/native-select/NativeSelect.vue +1 -1
- package/dist/runtime/components/ui/native-select/NativeSelect.vue.d.ts +2 -2
- package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +1 -0
- package/dist/runtime/components/ui/native-select/NativeSelectOption.vue +4 -1
- package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +1 -0
- package/dist/runtime/components/ui/number-field/NumberFieldInput.vue +1 -1
- package/dist/runtime/components/ui/switch/Switch.vue +2 -2
- package/dist/runtime/components/ui/table/Table.d.vue.ts +147 -0
- package/dist/runtime/components/ui/table/Table.vue +952 -0
- package/dist/runtime/components/ui/table/Table.vue.d.ts +147 -0
- package/dist/runtime/components/ui/table/schema.d.ts +151 -0
- package/dist/runtime/components/ui/table/schema.js +142 -0
- package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.d.vue.ts +128 -0
- package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue +2719 -0
- package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue.d.ts +128 -0
- package/dist/runtime/components/ui/table-configurator/menu.d.ts +37 -0
- package/dist/runtime/components/ui/table-configurator/menu.js +227 -0
- package/dist/runtime/components/ui/tabs/Tabs.d.vue.ts +24 -0
- package/dist/runtime/components/ui/tabs/Tabs.vue +30 -0
- package/dist/runtime/components/ui/tabs/Tabs.vue.d.ts +24 -0
- package/dist/runtime/components/ui/tabs/TabsContent.d.vue.ts +18 -0
- package/dist/runtime/components/ui/tabs/TabsContent.vue +23 -0
- package/dist/runtime/components/ui/tabs/TabsContent.vue.d.ts +18 -0
- package/dist/runtime/components/ui/tabs/TabsList.d.vue.ts +18 -0
- package/dist/runtime/components/ui/tabs/TabsList.vue +25 -0
- package/dist/runtime/components/ui/tabs/TabsList.vue.d.ts +18 -0
- package/dist/runtime/components/ui/tabs/TabsTrigger.d.vue.ts +18 -0
- package/dist/runtime/components/ui/tabs/TabsTrigger.vue +27 -0
- package/dist/runtime/components/ui/tabs/TabsTrigger.vue.d.ts +18 -0
- package/dist/runtime/components/ui/tabs/index.d.ts +4 -0
- package/dist/runtime/components/ui/tabs/index.js +4 -0
- package/dist/runtime/components/ui/textarea/Textarea.d.vue.ts +1 -0
- package/dist/runtime/components/ui/textarea/Textarea.vue +4 -2
- package/dist/runtime/components/ui/textarea/Textarea.vue.d.ts +1 -0
- package/dist/runtime/components/ui/toggle/Toggle.d.vue.ts +34 -0
- package/dist/runtime/components/ui/toggle/Toggle.vue +32 -0
- package/dist/runtime/components/ui/toggle/Toggle.vue.d.ts +34 -0
- package/dist/runtime/components/ui/toggle/index.d.ts +7 -0
- package/dist/runtime/components/ui/toggle/index.js +22 -0
- package/dist/runtime/composables/useTableRenderers.d.ts +2 -1
- package/dist/runtime/composables/useTableRenderers.js +2 -1
- package/dist/runtime/plugins/toast/index.d.ts +2 -2
- package/dist/runtime/style.css +1 -1
- package/dist/runtime/table-renderers/builtins.js +328 -137
- package/dist/runtime/table-renderers/registry.d.ts +2 -1
- package/dist/runtime/table-renderers/registry.js +3 -0
- package/dist/runtime/utils/coders.d.ts +29 -2
- package/dist/runtime/utils/coders.js +40 -2
- package/package.json +8 -6
- /package/dist/runtime/components/{logo.d.vue.ts → ui/logo/Logo.d.vue.ts} +0 -0
- /package/dist/runtime/components/{logo.vue → ui/logo/Logo.vue} +0 -0
- /package/dist/runtime/components/{logo.vue.d.ts → ui/logo/Logo.vue.d.ts} +0 -0
|
@@ -3,6 +3,7 @@ type __VLS_Props = {
|
|
|
3
3
|
class?: HTMLAttributes['class'];
|
|
4
4
|
defaultValue?: string | number;
|
|
5
5
|
modelValue?: string | number;
|
|
6
|
+
placeholder?: string;
|
|
6
7
|
};
|
|
7
8
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
9
|
"update:modelValue": (payload: string | number) => any;
|
|
@@ -4,7 +4,8 @@ import { cn } from "../../../utils/cn";
|
|
|
4
4
|
const props = defineProps({
|
|
5
5
|
class: { type: null, required: false },
|
|
6
6
|
defaultValue: { type: [String, Number], required: false },
|
|
7
|
-
modelValue: { type: [String, Number], required: false }
|
|
7
|
+
modelValue: { type: [String, Number], required: false },
|
|
8
|
+
placeholder: { type: String, required: false }
|
|
8
9
|
});
|
|
9
10
|
const emits = defineEmits(["update:modelValue"]);
|
|
10
11
|
const modelValue = useVModel(props, "modelValue", emits, {
|
|
@@ -17,6 +18,7 @@ const modelValue = useVModel(props, "modelValue", emits, {
|
|
|
17
18
|
<textarea
|
|
18
19
|
v-model="modelValue"
|
|
19
20
|
data-slot="textarea"
|
|
20
|
-
:
|
|
21
|
+
:placeholder="props.placeholder"
|
|
22
|
+
:class="cn('border-zinc-200 placeholder:text-zinc-400 focus-visible:border-(--primary) aria-invalid:border-red-400 flex field-sizing-content min-h-16 w-full rounded-md border bg-transparent px-3 py-2 text-base shadow-xs transition-[color,box-shadow] outline-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm', props.class)"
|
|
21
23
|
/>
|
|
22
24
|
</template>
|
|
@@ -3,6 +3,7 @@ type __VLS_Props = {
|
|
|
3
3
|
class?: HTMLAttributes['class'];
|
|
4
4
|
defaultValue?: string | number;
|
|
5
5
|
modelValue?: string | number;
|
|
6
|
+
placeholder?: string;
|
|
6
7
|
};
|
|
7
8
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
9
|
"update:modelValue": (payload: string | number) => any;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { ToggleProps } from 'reka-ui';
|
|
2
|
+
import type { HTMLAttributes } from 'vue';
|
|
3
|
+
import type { ToggleVariants } from '.';
|
|
4
|
+
type __VLS_Props = ToggleProps & {
|
|
5
|
+
class?: HTMLAttributes['class'];
|
|
6
|
+
variant?: ToggleVariants['variant'];
|
|
7
|
+
size?: ToggleVariants['size'];
|
|
8
|
+
};
|
|
9
|
+
declare var __VLS_8: {
|
|
10
|
+
modelValue: boolean;
|
|
11
|
+
state: "off" | "on";
|
|
12
|
+
pressed: boolean;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_Slots = {} & {
|
|
16
|
+
default?: (props: typeof __VLS_8) => any;
|
|
17
|
+
};
|
|
18
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (value: boolean) => any;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
disabled: boolean;
|
|
24
|
+
size: "default" | "sm" | "lg" | null;
|
|
25
|
+
variant: "default" | "outline" | null;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
28
|
+
declare const _default: typeof __VLS_export;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
+
import { Toggle, useForwardPropsEmits } from "reka-ui";
|
|
4
|
+
import { cn } from "../../../utils/cn";
|
|
5
|
+
import { toggleVariants } from ".";
|
|
6
|
+
const props = defineProps({
|
|
7
|
+
defaultValue: { type: Boolean, required: false },
|
|
8
|
+
modelValue: { type: [Boolean, null], required: false },
|
|
9
|
+
disabled: { type: Boolean, required: false, default: false },
|
|
10
|
+
asChild: { type: Boolean, required: false },
|
|
11
|
+
as: { type: null, required: false },
|
|
12
|
+
name: { type: String, required: false },
|
|
13
|
+
required: { type: Boolean, required: false },
|
|
14
|
+
class: { type: null, required: false },
|
|
15
|
+
variant: { type: null, required: false, default: "default" },
|
|
16
|
+
size: { type: null, required: false, default: "default" }
|
|
17
|
+
});
|
|
18
|
+
const emits = defineEmits(["update:modelValue"]);
|
|
19
|
+
const delegatedProps = reactiveOmit(props, "class", "size", "variant");
|
|
20
|
+
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<template>
|
|
24
|
+
<Toggle
|
|
25
|
+
v-slot="slotProps"
|
|
26
|
+
data-slot="toggle"
|
|
27
|
+
v-bind="forwarded"
|
|
28
|
+
:class="cn(toggleVariants({ variant, size }), props.class)"
|
|
29
|
+
>
|
|
30
|
+
<slot v-bind="slotProps" />
|
|
31
|
+
</Toggle>
|
|
32
|
+
</template>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { ToggleProps } from 'reka-ui';
|
|
2
|
+
import type { HTMLAttributes } from 'vue';
|
|
3
|
+
import type { ToggleVariants } from '.';
|
|
4
|
+
type __VLS_Props = ToggleProps & {
|
|
5
|
+
class?: HTMLAttributes['class'];
|
|
6
|
+
variant?: ToggleVariants['variant'];
|
|
7
|
+
size?: ToggleVariants['size'];
|
|
8
|
+
};
|
|
9
|
+
declare var __VLS_8: {
|
|
10
|
+
modelValue: boolean;
|
|
11
|
+
state: "off" | "on";
|
|
12
|
+
pressed: boolean;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_Slots = {} & {
|
|
16
|
+
default?: (props: typeof __VLS_8) => any;
|
|
17
|
+
};
|
|
18
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (value: boolean) => any;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
disabled: boolean;
|
|
24
|
+
size: "default" | "sm" | "lg" | null;
|
|
25
|
+
variant: "default" | "outline" | null;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
28
|
+
declare const _default: typeof __VLS_export;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { VariantProps } from 'class-variance-authority';
|
|
2
|
+
export { default as Toggle } from './Toggle.vue.js';
|
|
3
|
+
export declare const toggleVariants: (props?: ({
|
|
4
|
+
variant?: "default" | "outline" | null | undefined;
|
|
5
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export type ToggleVariants = VariantProps<typeof toggleVariants>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { cva } from "class-variance-authority";
|
|
2
|
+
export { default as Toggle } from "./Toggle.vue";
|
|
3
|
+
export const toggleVariants = cva(
|
|
4
|
+
"inline-flex cursor-pointer items-center justify-center gap-2 whitespace-nowrap rounded-sm text-sm font-medium transition-all duration-180 outline-none disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 [&_svg]:shrink-0",
|
|
5
|
+
{
|
|
6
|
+
variants: {
|
|
7
|
+
variant: {
|
|
8
|
+
default: "bg-transparent text-zinc-600 hover:bg-zinc-50 hover:text-zinc-900 data-[state=on]:bg-[color-mix(in_srgb,var(--primary)_12%,white)] data-[state=on]:text-(--primary)",
|
|
9
|
+
outline: "border border-zinc-200 bg-white text-zinc-700 shadow-xs hover:bg-zinc-50 hover:text-zinc-900 data-[state=on]:border-[color-mix(in_srgb,var(--primary)_50%,white)] data-[state=on]:bg-[color-mix(in_srgb,var(--primary)_12%,white)] data-[state=on]:text-(--primary)"
|
|
10
|
+
},
|
|
11
|
+
size: {
|
|
12
|
+
default: "h-9 min-w-9 px-3",
|
|
13
|
+
sm: "h-8 min-w-8 px-2.5 text-xs",
|
|
14
|
+
lg: "h-10 min-w-10 px-4"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
defaultVariants: {
|
|
18
|
+
variant: "default",
|
|
19
|
+
size: "default"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
);
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import '../table-renderers/builtins.js';
|
|
2
|
-
import { getTableRenderer, resolveTableRenderer } from '../table-renderers/registry.js';
|
|
2
|
+
import { getTableRenderer, listTableRenderers, resolveTableRenderer } from '../table-renderers/registry.js';
|
|
3
3
|
export { defineTableRenderer } from '../table-renderers/registry.js';
|
|
4
4
|
export type { TableRenderer, TableRendererCellArgs, TableRendererColumnDefOverrides, TableRendererConfigComponent, TableRendererFooterArgs, TableRendererHeaderArgs, TableRendererId, } from '../table-renderers/registry.js';
|
|
5
5
|
export declare function useTableRenderers(): {
|
|
6
6
|
getTableRenderer: typeof getTableRenderer;
|
|
7
|
+
listTableRenderers: typeof listTableRenderers;
|
|
7
8
|
resolveTableRenderer: typeof resolveTableRenderer;
|
|
8
9
|
};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import "../table-renderers/builtins";
|
|
2
|
-
import { getTableRenderer, resolveTableRenderer } from "../table-renderers/registry.js";
|
|
2
|
+
import { getTableRenderer, listTableRenderers, resolveTableRenderer } from "../table-renderers/registry.js";
|
|
3
3
|
export { defineTableRenderer } from "../table-renderers/registry.js";
|
|
4
4
|
export function useTableRenderers() {
|
|
5
5
|
return {
|
|
6
6
|
getTableRenderer,
|
|
7
|
+
listTableRenderers,
|
|
7
8
|
resolveTableRenderer
|
|
8
9
|
};
|
|
9
10
|
}
|
|
@@ -11,6 +11,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
11
11
|
icon?: import("vue").Component | undefined;
|
|
12
12
|
class?: string | undefined;
|
|
13
13
|
style?: import("vue").CSSProperties | undefined;
|
|
14
|
+
cancel?: (import("vue-sonner").Action | import("vue").Component) | undefined;
|
|
14
15
|
toasterId?: string | undefined;
|
|
15
16
|
component?: import("vue").Component | undefined;
|
|
16
17
|
componentProps?: any;
|
|
@@ -21,7 +22,6 @@ declare const _default: import("#app").Plugin<{
|
|
|
21
22
|
duration?: number | undefined;
|
|
22
23
|
important?: boolean | undefined;
|
|
23
24
|
action?: (import("vue-sonner").Action | import("vue").Component) | undefined;
|
|
24
|
-
cancel?: (import("vue-sonner").Action | import("vue").Component) | undefined;
|
|
25
25
|
onDismiss?: ((toast: import("vue-sonner").ToastT) => void) | undefined;
|
|
26
26
|
onAutoClose?: ((toast: import("vue-sonner").ToastT) => void) | undefined;
|
|
27
27
|
cancelButtonStyle?: import("vue").CSSProperties | undefined;
|
|
@@ -64,6 +64,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
64
64
|
icon?: import("vue").Component | undefined;
|
|
65
65
|
class?: string | undefined;
|
|
66
66
|
style?: import("vue").CSSProperties | undefined;
|
|
67
|
+
cancel?: (import("vue-sonner").Action | import("vue").Component) | undefined;
|
|
67
68
|
toasterId?: string | undefined;
|
|
68
69
|
component?: import("vue").Component | undefined;
|
|
69
70
|
componentProps?: any;
|
|
@@ -74,7 +75,6 @@ declare const _default: import("#app").Plugin<{
|
|
|
74
75
|
duration?: number | undefined;
|
|
75
76
|
important?: boolean | undefined;
|
|
76
77
|
action?: (import("vue-sonner").Action | import("vue").Component) | undefined;
|
|
77
|
-
cancel?: (import("vue-sonner").Action | import("vue").Component) | undefined;
|
|
78
78
|
onDismiss?: ((toast: import("vue-sonner").ToastT) => void) | undefined;
|
|
79
79
|
onAutoClose?: ((toast: import("vue-sonner").ToastT) => void) | undefined;
|
|
80
80
|
cancelButtonStyle?: import("vue").CSSProperties | undefined;
|
package/dist/runtime/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import "tailwindcss";@plugin "@tailwindcss/typography";@source "components";@theme{--font-sans:"Noto Sans","Noto Sans SC","Noto Sans JP","sans-serif";--font-mono:"Berkeley Mono","Fira Mono","monospace"}
|
|
1
|
+
@import "tailwindcss";@plugin "@tailwindcss/typography";@source "components";@source "table-renderers";@theme{--font-sans:"Noto Sans","Noto Sans SC","Noto Sans JP","sans-serif";--font-mono:"Berkeley Mono","Fira Mono","monospace"}
|