semaphor 0.0.86 → 0.0.88
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/chunks/{index-D0bAJoup.js → index-CNzN5DHP.js} +91 -91
- package/dist/chunks/{index-D11rWspx.js → index-CcYNXjO4.js} +2035 -2002
- package/dist/chunks/index-CrmH51ru.js +240 -0
- package/dist/chunks/{index-BSwfjVFo.js → index-ssiDVD0o.js} +9459 -9409
- package/dist/chunks/{lucide-react-ByJO9o6C.js → lucide-react-CEqk5qQM.js} +621 -626
- package/dist/chunks/{lucide-react-Df4Kdthg.js → lucide-react-CiT3aGYQ.js} +4073 -4084
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +30 -30
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +1 -1
- package/dist/types/dashboard.d.ts +6 -1
- package/dist/types/main.d.ts +19 -11
- package/dist/types/surfboard.d.ts +6 -1
- package/dist/types/types.d.ts +6 -1
- package/package.json +1 -1
- package/dist/chunks/index-Cix66En2.js +0 -235
|
@@ -109,7 +109,7 @@ export declare type DateOptions = {
|
|
|
109
109
|
options: Intl.DateTimeFormatOptions;
|
|
110
110
|
};
|
|
111
111
|
|
|
112
|
-
export declare type DisplayDataType = 'string' | 'date' | 'number' | 'none';
|
|
112
|
+
export declare type DisplayDataType = 'string' | 'date' | 'number' | 'html' | 'none';
|
|
113
113
|
|
|
114
114
|
export declare type ErrorProps = {
|
|
115
115
|
message?: string;
|
|
@@ -166,6 +166,10 @@ export declare type GetPluginsResponse = {
|
|
|
166
166
|
}[];
|
|
167
167
|
};
|
|
168
168
|
|
|
169
|
+
export declare type HtmlOptions = {
|
|
170
|
+
html: string;
|
|
171
|
+
};
|
|
172
|
+
|
|
169
173
|
export declare type KPICardProps = {
|
|
170
174
|
card: TCard;
|
|
171
175
|
isLoading?: boolean;
|
|
@@ -198,6 +202,7 @@ declare type OptionsMap = {
|
|
|
198
202
|
number: NumberOptions;
|
|
199
203
|
string: StringOptions;
|
|
200
204
|
date: DateOptions;
|
|
205
|
+
html: HtmlOptions;
|
|
201
206
|
none: NoneOptions;
|
|
202
207
|
};
|
|
203
208
|
|
package/dist/types/types.d.ts
CHANGED
|
@@ -103,7 +103,7 @@ export declare type DateOptions = {
|
|
|
103
103
|
options: Intl.DateTimeFormatOptions;
|
|
104
104
|
};
|
|
105
105
|
|
|
106
|
-
export declare type DisplayDataType = 'string' | 'date' | 'number' | 'none';
|
|
106
|
+
export declare type DisplayDataType = 'string' | 'date' | 'number' | 'html' | 'none';
|
|
107
107
|
|
|
108
108
|
export declare type ErrorProps = {
|
|
109
109
|
message?: string;
|
|
@@ -160,6 +160,10 @@ export declare type GetPluginsResponse = {
|
|
|
160
160
|
}[];
|
|
161
161
|
};
|
|
162
162
|
|
|
163
|
+
export declare type HtmlOptions = {
|
|
164
|
+
html: string;
|
|
165
|
+
};
|
|
166
|
+
|
|
163
167
|
export declare type KPICardProps = {
|
|
164
168
|
card: TCard;
|
|
165
169
|
isLoading?: boolean;
|
|
@@ -192,6 +196,7 @@ declare type OptionsMap = {
|
|
|
192
196
|
number: NumberOptions;
|
|
193
197
|
string: StringOptions;
|
|
194
198
|
date: DateOptions;
|
|
199
|
+
html: HtmlOptions;
|
|
195
200
|
none: NoneOptions;
|
|
196
201
|
};
|
|
197
202
|
|