@kosdev-code/kos-ddk-components 0.1.0-dev.5264 → 0.1.0-dev.5343
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.
|
@@ -3,9 +3,7 @@ export interface ExperienceProps {
|
|
|
3
3
|
onComplete: () => void;
|
|
4
4
|
onSkip?: () => void;
|
|
5
5
|
}
|
|
6
|
-
export
|
|
7
|
-
(props: ExperienceProps & T): JSX.Element;
|
|
8
|
-
}
|
|
6
|
+
export type Experience<T extends Record<string, any> = Record<string, any>> = React.FC<ExperienceProps & T>;
|
|
9
7
|
export interface ExperienceMap {
|
|
10
8
|
[key: string]: Experience;
|
|
11
9
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"experience.d.ts","sourceRoot":"","sources":["../../../../../../packages/ddk/kos-ddk-components/src/core/experience/experience.tsx"],"names":[],"mappings":";AAAA,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,
|
|
1
|
+
{"version":3,"file":"experience.d.ts","sourceRoot":"","sources":["../../../../../../packages/ddk/kos-ddk-components/src/core/experience/experience.tsx"],"names":[],"mappings":";AAAA,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IACxE,KAAK,CAAC,EAAE,CAAC,eAAe,GAAG,CAAC,CAAC,CAAC;AAEhC,MAAM,WAAW,aAAa;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC;CAC3B;AAED,eAAO,MAAM,aAAa,OAAQ,MAAM,iBAAiB,aAAa,oCACnD,CAAC"}
|
|
@@ -9,5 +9,5 @@ export interface ViewExperienceMap {
|
|
|
9
9
|
[key: string]: ViewExperience;
|
|
10
10
|
}
|
|
11
11
|
export declare const useViewExperienceListMap: (viewExperienceList: ViewExperience[]) => ViewExperienceMap;
|
|
12
|
-
export declare const useViewExperience: (id?: string, experienceMap?: ViewExperienceMap) => Experience
|
|
12
|
+
export declare const useViewExperience: (id?: string, experienceMap?: ViewExperienceMap) => Experience | undefined;
|
|
13
13
|
//# sourceMappingURL=view-experience.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"view-experience.d.ts","sourceRoot":"","sources":["../../../../../../packages/ddk/kos-ddk-components/src/core/experience/view-experience.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,GAAG,CAAC;AAE/B,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,UAAU,CAAC;CACxB;AAED,MAAM,WAAW,iBAAiB;IAChC,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAC;CAC/B;AAED,eAAO,MAAM,wBAAwB,uBACf,cAAc,EAAE,sBAanC,CAAC;AAEJ,eAAO,MAAM,iBAAiB,QACvB,MAAM,kBACK,iBAAiB,
|
|
1
|
+
{"version":3,"file":"view-experience.d.ts","sourceRoot":"","sources":["../../../../../../packages/ddk/kos-ddk-components/src/core/experience/view-experience.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,GAAG,CAAC;AAE/B,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,UAAU,CAAC;CACxB;AAED,MAAM,WAAW,iBAAiB;IAChC,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAC;CAC/B;AAED,eAAO,MAAM,wBAAwB,uBACf,cAAc,EAAE,sBAanC,CAAC;AAEJ,eAAO,MAAM,iBAAiB,QACvB,MAAM,kBACK,iBAAiB,2BAKlC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kosdev-code/kos-ddk-components",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.5343",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
"./style.css": "./style.css"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@kosdev-code/kos-ui-sdk": "0.1.0-dev.
|
|
16
|
-
"@kosdev-code/kos-dispense-sdk": "0.1.0-dev.
|
|
15
|
+
"@kosdev-code/kos-ui-sdk": "0.1.0-dev.5343",
|
|
16
|
+
"@kosdev-code/kos-dispense-sdk": "0.1.0-dev.5343"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"react-router-dom": "^6.11.2"
|
|
20
20
|
},
|
|
21
21
|
"kos": {
|
|
22
22
|
"build": {
|
|
23
|
-
"gitHash": "
|
|
23
|
+
"gitHash": "d7e8c05f0ebbdc1cd3a4e3b2da3ae954abc30b9d"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|