analytica-frontend-lib 1.1.94 → 1.1.96
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/CheckBox/index.d.mts +1 -1
- package/dist/CheckBox/index.d.ts +1 -1
- package/dist/Radio/index.d.mts +2 -2
- package/dist/Radio/index.d.ts +2 -2
- package/dist/Search/index.d.mts +1 -1
- package/dist/Search/index.d.ts +1 -1
- package/dist/StatisticsCard/index.d.mts +79 -0
- package/dist/StatisticsCard/index.d.ts +79 -0
- package/dist/StatisticsCard/index.js +623 -0
- package/dist/StatisticsCard/index.js.map +1 -0
- package/dist/StatisticsCard/index.mjs +604 -0
- package/dist/StatisticsCard/index.mjs.map +1 -0
- package/dist/index.css +43 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +474 -340
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +462 -329
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +43 -0
- package/dist/styles.css.map +1 -1
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -37,6 +37,7 @@ export { default as DropdownMenu, DropdownMenuContent, DropdownMenuItem, Dropdow
|
|
|
37
37
|
export { default as Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from './Select/index.mjs';
|
|
38
38
|
export { default as Menu, MenuContent, MenuItem, MenuOverflow } from './Menu/index.mjs';
|
|
39
39
|
export { CardActivitiesResults, CardAudio, CardPerformance, CardProgress, CardQuestions, CardResults, CardSimulado, CardSimulationHistory, CardStatus, CardTest, CardTopic } from './Card/index.mjs';
|
|
40
|
+
export { StatisticsCard } from './StatisticsCard/index.mjs';
|
|
40
41
|
export { Skeleton, SkeletonCard, SkeletonCircle, SkeletonList, SkeletonRectangle, SkeletonRounded, SkeletonTable, SkeletonText } from './Skeleton/index.mjs';
|
|
41
42
|
export { default as NotFound } from './NotFound/index.mjs';
|
|
42
43
|
export { default as VideoPlayer } from './VideoPlayer/index.mjs';
|
|
@@ -149,7 +150,7 @@ declare const CheckboxListItem: react.ForwardRefExoticComponent<{
|
|
|
149
150
|
state?: CheckboxListState;
|
|
150
151
|
/** Additional CSS classes */
|
|
151
152
|
className?: string;
|
|
152
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "
|
|
153
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "name" | "type" | "size" | "value" | "checked"> & react.RefAttributes<HTMLInputElement>>;
|
|
153
154
|
|
|
154
155
|
/**
|
|
155
156
|
* Notification store state interface
|
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export { default as DropdownMenu, DropdownMenuContent, DropdownMenuItem, Dropdow
|
|
|
37
37
|
export { default as Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from './Select/index.js';
|
|
38
38
|
export { default as Menu, MenuContent, MenuItem, MenuOverflow } from './Menu/index.js';
|
|
39
39
|
export { CardActivitiesResults, CardAudio, CardPerformance, CardProgress, CardQuestions, CardResults, CardSimulado, CardSimulationHistory, CardStatus, CardTest, CardTopic } from './Card/index.js';
|
|
40
|
+
export { StatisticsCard } from './StatisticsCard/index.js';
|
|
40
41
|
export { Skeleton, SkeletonCard, SkeletonCircle, SkeletonList, SkeletonRectangle, SkeletonRounded, SkeletonTable, SkeletonText } from './Skeleton/index.js';
|
|
41
42
|
export { default as NotFound } from './NotFound/index.js';
|
|
42
43
|
export { default as VideoPlayer } from './VideoPlayer/index.js';
|
|
@@ -149,7 +150,7 @@ declare const CheckboxListItem: react.ForwardRefExoticComponent<{
|
|
|
149
150
|
state?: CheckboxListState;
|
|
150
151
|
/** Additional CSS classes */
|
|
151
152
|
className?: string;
|
|
152
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "
|
|
153
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "name" | "type" | "size" | "value" | "checked"> & react.RefAttributes<HTMLInputElement>>;
|
|
153
154
|
|
|
154
155
|
/**
|
|
155
156
|
* Notification store state interface
|