@pixpilot/shadcn-ui 0.42.0 → 0.43.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/{tags-input.cjs → TagsInput.cjs} +1 -1
- package/dist/{tags-input.d.cts → TagsInput.d.cts} +1 -1
- package/dist/{tags-input.d.ts → TagsInput.d.ts} +1 -1
- package/dist/{tags-input.js → TagsInput.js} +1 -1
- package/dist/dialog/Dialog.d.ts +4 -4
- package/dist/file-upload/FileUpload.d.ts +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ react = require_rolldown_runtime.__toESM(react);
|
|
|
10
10
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
11
11
|
react_jsx_runtime = require_rolldown_runtime.__toESM(react_jsx_runtime);
|
|
12
12
|
|
|
13
|
-
//#region src/
|
|
13
|
+
//#region src/TagsInput.tsx
|
|
14
14
|
const EMPTY_ARRAY = [];
|
|
15
15
|
const EMPTY_OPTIONS = [];
|
|
16
16
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CommandOptionListItem } from "./CommandOptionList.cjs";
|
|
2
2
|
import * as react_jsx_runtime5 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
|
-
//#region src/
|
|
4
|
+
//#region src/TagsInput.d.ts
|
|
5
5
|
interface TagsInputProps {
|
|
6
6
|
value?: Array<string | number>;
|
|
7
7
|
onChange?: (value: Array<string | number>) => void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CommandOptionListItem } from "./CommandOptionList.js";
|
|
2
2
|
import * as react_jsx_runtime5 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
|
-
//#region src/
|
|
4
|
+
//#region src/TagsInput.d.ts
|
|
5
5
|
interface TagsInputProps {
|
|
6
6
|
value?: Array<string | number>;
|
|
7
7
|
onChange?: (value: Array<string | number>) => void;
|
|
@@ -6,7 +6,7 @@ import { Command, Popover, PopoverContent, PopoverTrigger, TagsInputInLineClear,
|
|
|
6
6
|
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
7
7
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
8
8
|
|
|
9
|
-
//#region src/
|
|
9
|
+
//#region src/TagsInput.tsx
|
|
10
10
|
const EMPTY_ARRAY = [];
|
|
11
11
|
const EMPTY_OPTIONS = [];
|
|
12
12
|
/**
|
package/dist/dialog/Dialog.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime7 from "react/jsx-runtime";
|
|
3
3
|
import * as _radix_ui_react_dialog0 from "@radix-ui/react-dialog";
|
|
4
4
|
|
|
5
5
|
//#region src/dialog/Dialog.d.ts
|
|
@@ -9,14 +9,14 @@ declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<_radix_ui_re
|
|
|
9
9
|
declare function DialogHeader({
|
|
10
10
|
className,
|
|
11
11
|
...props
|
|
12
|
-
}: React$1.HTMLAttributes<HTMLDivElement>):
|
|
12
|
+
}: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime7.JSX.Element;
|
|
13
13
|
declare function DialogBody({
|
|
14
14
|
className,
|
|
15
15
|
...props
|
|
16
|
-
}: React$1.HTMLAttributes<HTMLDivElement>):
|
|
16
|
+
}: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime7.JSX.Element;
|
|
17
17
|
declare function DialogFooter({
|
|
18
18
|
className,
|
|
19
19
|
...props
|
|
20
|
-
}: React$1.HTMLAttributes<HTMLDivElement>):
|
|
20
|
+
}: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime7.JSX.Element;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { DialogBody, DialogContent, DialogFooter, DialogHeader };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FileUploadProps } from "./types/index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime6 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/file-upload/FileUpload.d.ts
|
|
5
|
-
declare function FileUpload(props: FileUploadProps):
|
|
5
|
+
declare function FileUpload(props: FileUploadProps): react_jsx_runtime6.JSX.Element;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { FileUpload };
|
package/dist/index.cjs
CHANGED
|
@@ -56,7 +56,7 @@ const require_TabsContext = require('./tabs/TabsContext.cjs');
|
|
|
56
56
|
const require_TabsList = require('./tabs/TabsList.cjs');
|
|
57
57
|
const require_TabsTrigger = require('./tabs/TabsTrigger.cjs');
|
|
58
58
|
require('./tabs/index.cjs');
|
|
59
|
-
const
|
|
59
|
+
const require_TagsInput = require('./TagsInput.cjs');
|
|
60
60
|
const require_ThemeProvider = require('./theme-provider/ThemeProvider.cjs');
|
|
61
61
|
require('./theme-provider/index.cjs');
|
|
62
62
|
const require_ThemeModeDropdown = require('./theme-toggle/ThemeModeDropdown.cjs');
|
|
@@ -122,7 +122,7 @@ exports.TabsContent = __pixpilot_shadcn.TabsContent;
|
|
|
122
122
|
exports.TabsContext = require_TabsContext.TabsContext;
|
|
123
123
|
exports.TabsList = require_TabsList.TabsList;
|
|
124
124
|
exports.TabsTrigger = require_TabsTrigger.TabsTrigger;
|
|
125
|
-
exports.TagsInput =
|
|
125
|
+
exports.TagsInput = require_TagsInput.TagsInput;
|
|
126
126
|
exports.ThemeModeDropdown = require_ThemeModeDropdown.ThemeModeDropdown;
|
|
127
127
|
exports.ThemeModeSwitchInside = require_ThemeModeSwitchInside.ThemeModeSwitchInside;
|
|
128
128
|
exports.ThemeModeSwitchOutside = require_ThemeModeSwitchOutside.ThemeModeSwitchOutside;
|
package/dist/index.d.cts
CHANGED
|
@@ -60,7 +60,7 @@ import { TabsContext, TabsContextValue, useTabsContext } from "./tabs/TabsContex
|
|
|
60
60
|
import { TabsList, TabsListProps } from "./tabs/TabsList.cjs";
|
|
61
61
|
import { TabsTrigger, TabsTriggerProps } from "./tabs/TabsTrigger.cjs";
|
|
62
62
|
import "./tabs/index.cjs";
|
|
63
|
-
import { TagsInput, TagsInputProps } from "./
|
|
63
|
+
import { TagsInput, TagsInputProps } from "./TagsInput.cjs";
|
|
64
64
|
import { ThemeProvider, ThemeProviderProps } from "./theme-provider/ThemeProvider.cjs";
|
|
65
65
|
import { useTheme } from "./theme-provider/index.cjs";
|
|
66
66
|
import { ThemeModeDropdown, ThemeModeDropdownProps } from "./theme-toggle/ThemeModeDropdown.cjs";
|
package/dist/index.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ import { TabsContext, TabsContextValue, useTabsContext } from "./tabs/TabsContex
|
|
|
62
62
|
import { TabsList, TabsListProps } from "./tabs/TabsList.js";
|
|
63
63
|
import { TabsTrigger, TabsTriggerProps } from "./tabs/TabsTrigger.js";
|
|
64
64
|
import "./tabs/index.js";
|
|
65
|
-
import { TagsInput, TagsInputProps } from "./
|
|
65
|
+
import { TagsInput, TagsInputProps } from "./TagsInput.js";
|
|
66
66
|
import { ThemeProvider, ThemeProviderProps } from "./theme-provider/ThemeProvider.js";
|
|
67
67
|
import { useTheme } from "./theme-provider/index.js";
|
|
68
68
|
import { ThemeModeDropdown, ThemeModeDropdownProps } from "./theme-toggle/ThemeModeDropdown.js";
|
package/dist/index.js
CHANGED
|
@@ -57,7 +57,7 @@ import { TabsContext, useTabsContext } from "./tabs/TabsContext.js";
|
|
|
57
57
|
import { TabsList } from "./tabs/TabsList.js";
|
|
58
58
|
import { TabsTrigger } from "./tabs/TabsTrigger.js";
|
|
59
59
|
import "./tabs/index.js";
|
|
60
|
-
import { TagsInput } from "./
|
|
60
|
+
import { TagsInput } from "./TagsInput.js";
|
|
61
61
|
import { ThemeProvider } from "./theme-provider/ThemeProvider.js";
|
|
62
62
|
import { useTheme } from "./theme-provider/index.js";
|
|
63
63
|
import { ThemeModeDropdown } from "./theme-toggle/ThemeModeDropdown.js";
|
package/package.json
CHANGED