academe-kit 0.9.5 → 0.9.6
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/index.cjs +73 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +10 -4
- package/dist/index.esm.js +73 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/types/components/JourneyStep/JourneyCrystalPin.d.ts +7 -0
- package/dist/types/components/JourneyStep/frames/sphere.d.ts +2 -0
- package/dist/types/components/JourneyStep/frames/types.d.ts +1 -1
- package/dist/types/components/JourneyStep/index.d.ts +2 -0
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { CSSProperties } from 'react';
|
|
2
|
+
import './journey-step.css';
|
|
3
|
+
export interface JourneyCrystalPinProps {
|
|
4
|
+
className?: string;
|
|
5
|
+
style?: CSSProperties;
|
|
6
|
+
}
|
|
7
|
+
export declare function JourneyCrystalPin({ className, style }: JourneyCrystalPinProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReactNode } from 'react';
|
|
2
|
-
export type FrameKind = 'pentagon' | 'hexagonWings' | 'circleLaurel' | 'hexagonRibbon' | 'shieldWings' | 'pentagonCrown';
|
|
2
|
+
export type FrameKind = 'sphere' | 'pentagon' | 'hexagonWings' | 'circleLaurel' | 'hexagonRibbon' | 'shieldWings' | 'pentagonCrown';
|
|
3
3
|
export interface PentagonTheme {
|
|
4
4
|
shadow: string;
|
|
5
5
|
outer: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export { JourneyStep } from './JourneyStep';
|
|
2
2
|
export type { JourneyStepProps, JourneyStepSize, JourneyStepType } from './JourneyStep';
|
|
3
|
+
export { JourneyCrystalPin } from './JourneyCrystalPin';
|
|
4
|
+
export type { JourneyCrystalPinProps } from './JourneyCrystalPin';
|
|
3
5
|
export type { FrameKind } from './frames/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -9,8 +9,8 @@ export { CosmicDecor } from "./components/CosmicDecor";
|
|
|
9
9
|
export type { CosmicDecorProps, CosmicDecorVariant, CosmicPlanet, } from "./components/CosmicDecor";
|
|
10
10
|
export { CosmicStarsCanvas } from "./components/CosmicStarsCanvas";
|
|
11
11
|
export type { CosmicStarsCanvasProps } from "./components/CosmicStarsCanvas";
|
|
12
|
-
export { JourneyStep } from "./components/JourneyStep";
|
|
13
|
-
export type { JourneyStepProps, JourneyStepSize, JourneyStepType, FrameKind, } from "./components/JourneyStep";
|
|
12
|
+
export { JourneyStep, JourneyCrystalPin } from "./components/JourneyStep";
|
|
13
|
+
export type { JourneyStepProps, JourneyStepSize, JourneyStepType, JourneyCrystalPinProps, FrameKind, } from "./components/JourneyStep";
|
|
14
14
|
export { AcademeAuthProvider, useAcademeAuth, } from "./context/SecurityProvider";
|
|
15
15
|
export { useProtectedAppColors } from "./components/ProtectedApp";
|
|
16
16
|
export type { AcademeKeycloakContextProps, SecurityProviderProps, KeycloakUser, SecurityContextType, AcademeUser, } from "./context/SecurityProvider/types";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "academe-kit",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Official React SDK for Academe ecosystem - Authentication, protected routes, API services, and UI components for educational management applications",
|
|
6
6
|
"main": "dist/index.cjs",
|