@andreagiugni/tailwind-dashboard-ui 1.0.0 → 1.0.2
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/README.md +7 -4
- package/dist/{Editor-CHBOfOWf.d.cts → Editor-DEv5IZeb.d.cts} +2 -0
- package/dist/{Editor-CHBOfOWf.d.ts → Editor-DEv5IZeb.d.ts} +2 -0
- package/dist/{chunk-YSON6RJC.cjs → chunk-5DEBWZY7.cjs} +178 -43
- package/dist/chunk-5DEBWZY7.cjs.map +1 -0
- package/dist/{chunk-S4ADL5B7.cjs → chunk-6NC3VS54.cjs} +35 -115
- package/dist/chunk-6NC3VS54.cjs.map +1 -0
- package/dist/{chunk-DXUWFHPF.js → chunk-OYBYDSNI.js} +35 -115
- package/dist/chunk-OYBYDSNI.js.map +1 -0
- package/dist/{chunk-QGLKSM7S.js → chunk-PYZG7RY7.js} +179 -44
- package/dist/chunk-PYZG7RY7.js.map +1 -0
- package/dist/{chunk-U2SEFEOB.js → chunk-W3TC7P3Z.js} +8 -21
- package/dist/chunk-W3TC7P3Z.js.map +1 -0
- package/dist/{chunk-553PIOZS.cjs → chunk-ZQ6544NY.cjs} +8 -21
- package/dist/chunk-ZQ6544NY.cjs.map +1 -0
- package/dist/components/Calendar/Calendar.cjs +2 -2
- package/dist/components/Calendar/Calendar.js +1 -1
- package/dist/components/ColorPicker/ColorPicker.cjs +2 -2
- package/dist/components/ColorPicker/ColorPicker.js +1 -1
- package/dist/components/Editor/Editor.cjs +2 -2
- package/dist/components/Editor/Editor.d.cts +1 -1
- package/dist/components/Editor/Editor.d.ts +1 -1
- package/dist/components/Editor/Editor.js +1 -1
- package/dist/index.cjs +64 -558
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +60 -554
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
- package/dist/chunk-553PIOZS.cjs.map +0 -1
- package/dist/chunk-DXUWFHPF.js.map +0 -1
- package/dist/chunk-QGLKSM7S.js.map +0 -1
- package/dist/chunk-S4ADL5B7.cjs.map +0 -1
- package/dist/chunk-U2SEFEOB.js.map +0 -1
- package/dist/chunk-YSON6RJC.cjs.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClassValue } from 'clsx';
|
|
2
|
-
import { C as ColorOverrideProps } from './Editor-
|
|
3
|
-
export { E as Editor, a as EditorProps, b as EditorToolItem, s as styleOverride } from './Editor-
|
|
2
|
+
import { C as ColorOverrideProps } from './Editor-DEv5IZeb.cjs';
|
|
3
|
+
export { E as Editor, a as EditorProps, b as EditorToolItem, s as styleOverride } from './Editor-DEv5IZeb.cjs';
|
|
4
4
|
import React, { FormEvent } from 'react';
|
|
5
5
|
import flatpickr from 'flatpickr';
|
|
6
6
|
export { BarChart, BarChartProps } from './components/Charts/BarChart.cjs';
|
|
@@ -104,7 +104,7 @@ interface DropdownItemProps extends ColorOverrideProps {
|
|
|
104
104
|
}
|
|
105
105
|
declare const DropdownItem: React.FC<DropdownItemProps>;
|
|
106
106
|
|
|
107
|
-
type ModalVariant = "
|
|
107
|
+
type ModalVariant = "confirm" | "error" | "warning";
|
|
108
108
|
interface ModalProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
109
109
|
isOpen: boolean;
|
|
110
110
|
onClose: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClassValue } from 'clsx';
|
|
2
|
-
import { C as ColorOverrideProps } from './Editor-
|
|
3
|
-
export { E as Editor, a as EditorProps, b as EditorToolItem, s as styleOverride } from './Editor-
|
|
2
|
+
import { C as ColorOverrideProps } from './Editor-DEv5IZeb.js';
|
|
3
|
+
export { E as Editor, a as EditorProps, b as EditorToolItem, s as styleOverride } from './Editor-DEv5IZeb.js';
|
|
4
4
|
import React, { FormEvent } from 'react';
|
|
5
5
|
import flatpickr from 'flatpickr';
|
|
6
6
|
export { BarChart, BarChartProps } from './components/Charts/BarChart.js';
|
|
@@ -104,7 +104,7 @@ interface DropdownItemProps extends ColorOverrideProps {
|
|
|
104
104
|
}
|
|
105
105
|
declare const DropdownItem: React.FC<DropdownItemProps>;
|
|
106
106
|
|
|
107
|
-
type ModalVariant = "
|
|
107
|
+
type ModalVariant = "confirm" | "error" | "warning";
|
|
108
108
|
interface ModalProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
109
109
|
isOpen: boolean;
|
|
110
110
|
onClose: () => void;
|