ingeniuscliq-core 0.1.4 → 0.1.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/components/ui/badge.d.ts +1 -1
- package/dist/components/ui/button.d.ts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/{useI18n.d.ts → useLanguage.d.ts} +1 -1
- package/dist/index.js +2282 -25898
- package/dist/modules/CoreAuth/registry/hooks/index.d.ts +0 -0
- package/dist/modules/CoreAuth/registry/index.d.ts +4 -0
- package/dist/modules/CoreAuth/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreAuth/registry/ui/index.d.ts +1 -0
- package/dist/modules/CoreCustomization/registry/hooks/index.d.ts +0 -0
- package/dist/modules/CoreCustomization/registry/index.d.ts +2 -0
- package/dist/modules/CoreCustomization/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreCustomization/registry/ui/index.d.ts +0 -0
- package/dist/modules/CoreOrder/registry/hooks/index.d.ts +0 -0
- package/dist/modules/CoreOrder/registry/index.d.ts +2 -0
- package/dist/modules/CoreOrder/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreOrder/registry/ui/index.d.ts +0 -0
- package/dist/modules/CorePayForm/classes/CorePayFormBuilder.d.ts +2 -2
- package/dist/modules/CorePayForm/registry/hooks/index.d.ts +0 -0
- package/dist/modules/CorePayForm/registry/index.d.ts +2 -0
- package/dist/modules/CorePayForm/registry/types/index.d.ts +1 -0
- package/dist/modules/CorePayForm/registry/ui/index.d.ts +0 -0
- package/dist/modules/CoreProduct/classes/CoreProductBuilder.d.ts +2 -2
- package/dist/modules/CoreProduct/registry/hooks/index.d.ts +0 -0
- package/dist/modules/CoreProduct/registry/index.d.ts +2 -0
- package/dist/modules/CoreProduct/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreProduct/registry/ui/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/registry/hooks/index.d.ts +0 -0
- package/dist/modules/CoreShopCart/registry/index.d.ts +3 -0
- package/dist/modules/CoreShopCart/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/registry/ui/index.d.ts +1 -0
- package/dist/modules/registry/hooks/index.d.ts +0 -0
- package/dist/modules/registry/index.d.ts +6 -0
- package/dist/modules/registry/types/index.d.ts +6 -0
- package/dist/modules/registry/ui/index.d.ts +3 -0
- package/dist/registry/hooks/index.d.ts +1 -0
- package/dist/registry/index.d.ts +7 -0
- package/dist/registry/types/index.d.ts +2 -0
- package/dist/registry/ui/index.d.ts +2 -0
- package/dist/stores/customizationStore.d.ts +5 -5
- package/package.json +19 -1
- package/dist/index.css +0 -1
- package/dist/index.d.ts +0 -10
- package/dist/modules/CoreAuth/registry.d.ts +0 -6
- package/dist/modules/CoreCustomization/registry.d.ts +0 -3
- package/dist/modules/CoreOrder/registry.d.ts +0 -3
- package/dist/modules/CorePayForm/registry.d.ts +0 -3
- package/dist/modules/CoreProduct/registry.d.ts +0 -4
- package/dist/modules/CoreShopCart/registry.d.ts +0 -5
- package/dist/modules/registry.d.ts +0 -6
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../components/index';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../types/index';
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../types/index';
|
|
File without changes
|
|
@@ -8,7 +8,7 @@ export declare class CorePayFormBuilder implements CoreBuilder {
|
|
|
8
8
|
build(): import('zustand').UseBoundStore<Omit<import('zustand').StoreApi<CorePayFormStore<CorePayForm>>, "persist"> & {
|
|
9
9
|
persist: {
|
|
10
10
|
setOptions: (options: Partial<import('zustand/middleware').PersistOptions<CorePayFormStore<CorePayForm>, {
|
|
11
|
-
payForms: import('
|
|
11
|
+
payForms: import('../../../types').BasePagination<CorePayForm> | null;
|
|
12
12
|
}>>) => void;
|
|
13
13
|
clearStorage: () => void;
|
|
14
14
|
rehydrate: () => Promise<void> | void;
|
|
@@ -16,7 +16,7 @@ export declare class CorePayFormBuilder implements CoreBuilder {
|
|
|
16
16
|
onHydrate: (fn: (state: CorePayFormStore<CorePayForm>) => void) => () => void;
|
|
17
17
|
onFinishHydration: (fn: (state: CorePayFormStore<CorePayForm>) => void) => () => void;
|
|
18
18
|
getOptions: () => Partial<import('zustand/middleware').PersistOptions<CorePayFormStore<CorePayForm>, {
|
|
19
|
-
payForms: import('
|
|
19
|
+
payForms: import('../../../types').BasePagination<CorePayForm> | null;
|
|
20
20
|
}>>;
|
|
21
21
|
};
|
|
22
22
|
}>;
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../types/index';
|
|
File without changes
|
|
@@ -9,7 +9,7 @@ export declare class CoreProductBuilder implements CoreBuilder {
|
|
|
9
9
|
persist: {
|
|
10
10
|
setOptions: (options: Partial<import('zustand/middleware').PersistOptions<CoreProductStore<CoreProduct>, {
|
|
11
11
|
productDetails: CoreProduct | null;
|
|
12
|
-
products: import('
|
|
12
|
+
products: import('../../../types').BasePagination<CoreProduct> | null;
|
|
13
13
|
}>>) => void;
|
|
14
14
|
clearStorage: () => void;
|
|
15
15
|
rehydrate: () => Promise<void> | void;
|
|
@@ -18,7 +18,7 @@ export declare class CoreProductBuilder implements CoreBuilder {
|
|
|
18
18
|
onFinishHydration: (fn: (state: CoreProductStore<CoreProduct>) => void) => () => void;
|
|
19
19
|
getOptions: () => Partial<import('zustand/middleware').PersistOptions<CoreProductStore<CoreProduct>, {
|
|
20
20
|
productDetails: CoreProduct | null;
|
|
21
|
-
products: import('
|
|
21
|
+
products: import('../../../types').BasePagination<CoreProduct> | null;
|
|
22
22
|
}>>;
|
|
23
23
|
};
|
|
24
24
|
}>;
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../components/index';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../components/index';
|
|
File without changes
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from '../CoreAuth/registry/index';
|
|
2
|
+
export * from '../CoreCustomization/registry/index';
|
|
3
|
+
export * from '../CoreOrder/registry/index';
|
|
4
|
+
export * from '../CorePayForm/registry/index';
|
|
5
|
+
export * from '../CoreProduct/registry/index';
|
|
6
|
+
export * from '../CoreShopCart/registry/index';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from '../../CoreAuth/registry/types/index';
|
|
2
|
+
export * from '../../CoreCustomization/registry/types/index';
|
|
3
|
+
export * from '../../CoreOrder/registry/types/index';
|
|
4
|
+
export * from '../../CorePayForm/registry/types/index';
|
|
5
|
+
export * from '../../CoreProduct/registry/types/index';
|
|
6
|
+
export * from '../../CoreShopCart/registry/types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../hooks/index';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare const useCustomizationStore: import('zustand').UseBoundStore<Omit<import('zustand').StoreApi<import('
|
|
1
|
+
export declare const useCustomizationStore: import('zustand').UseBoundStore<Omit<import('zustand').StoreApi<import('../registry/types').CoreCustomizationStore>, "persist"> & {
|
|
2
2
|
persist: {
|
|
3
|
-
setOptions: (options: Partial<import('zustand/middleware').PersistOptions<import('
|
|
3
|
+
setOptions: (options: Partial<import('zustand/middleware').PersistOptions<import('../registry/types').CoreCustomizationStore, {
|
|
4
4
|
template: string | null;
|
|
5
5
|
components: string[] | null;
|
|
6
6
|
styles: import('../types/ui').CoreDesignTemplateStyles[] | null;
|
|
@@ -9,9 +9,9 @@ export declare const useCustomizationStore: import('zustand').UseBoundStore<Omit
|
|
|
9
9
|
clearStorage: () => void;
|
|
10
10
|
rehydrate: () => Promise<void> | void;
|
|
11
11
|
hasHydrated: () => boolean;
|
|
12
|
-
onHydrate: (fn: (state: import('
|
|
13
|
-
onFinishHydration: (fn: (state: import('
|
|
14
|
-
getOptions: () => Partial<import('zustand/middleware').PersistOptions<import('
|
|
12
|
+
onHydrate: (fn: (state: import('../registry/types').CoreCustomizationStore) => void) => () => void;
|
|
13
|
+
onFinishHydration: (fn: (state: import('../registry/types').CoreCustomizationStore) => void) => () => void;
|
|
14
|
+
getOptions: () => Partial<import('zustand/middleware').PersistOptions<import('../registry/types').CoreCustomizationStore, {
|
|
15
15
|
template: string | null;
|
|
16
16
|
components: string[] | null;
|
|
17
17
|
styles: import('../types/ui').CoreDesignTemplateStyles[] | null;
|
package/package.json
CHANGED
|
@@ -1,10 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ingeniuscliq-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "IngeniusCliq Core UI y lógica compartida",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/registry/index.js",
|
|
11
|
+
"types": "./dist/registry/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./types": {
|
|
14
|
+
"import": "./dist/registry/types/index.js",
|
|
15
|
+
"types": "./dist/registry/types/index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./ui": {
|
|
18
|
+
"import": "./dist/registry/ui/index.js",
|
|
19
|
+
"types": "./dist/registry/ui/index.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./hooks": {
|
|
22
|
+
"import": "./dist/registry/hooks/index.js",
|
|
23
|
+
"types": "./dist/registry/hooks/index.d.ts"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
8
26
|
"files": [
|
|
9
27
|
"dist",
|
|
10
28
|
"core/commands"
|
package/dist/index.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
:root{--color-spinner: white;--size-spinner: 20px}div.spinner{position:relative;width:var(--size-spinner);height:var(--size-spinner);display:inline-block;margin-left:50%;margin-right:50%;padding:10px;border-radius:10px}div.spinner div{width:6%;height:16%;background:var(--color-spinner);position:absolute;left:49%;top:43%;opacity:0;-webkit-border-radius:50px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-animation:fade 1s linear infinite}@-webkit-keyframes fade{0%{opacity:1}to{opacity:.25}}div.spinner div.bar1{-webkit-transform:rotate(0deg) translate(0,-130%);-webkit-animation-delay:0s}div.spinner div.bar2{-webkit-transform:rotate(30deg) translate(0,-130%);-webkit-animation-delay:-.9167s}div.spinner div.bar3{-webkit-transform:rotate(60deg) translate(0,-130%);-webkit-animation-delay:-.833s}div.spinner div.bar4{-webkit-transform:rotate(90deg) translate(0,-130%);-webkit-animation-delay:-.7497s}div.spinner div.bar5{-webkit-transform:rotate(120deg) translate(0,-130%);-webkit-animation-delay:-.667s}div.spinner div.bar6{-webkit-transform:rotate(150deg) translate(0,-130%);-webkit-animation-delay:-.5837s}div.spinner div.bar7{-webkit-transform:rotate(180deg) translate(0,-130%);-webkit-animation-delay:-.5s}div.spinner div.bar8{-webkit-transform:rotate(210deg) translate(0,-130%);-webkit-animation-delay:-.4167s}div.spinner div.bar9{-webkit-transform:rotate(240deg) translate(0,-130%);-webkit-animation-delay:-.333s}div.spinner div.bar10{-webkit-transform:rotate(270deg) translate(0,-130%);-webkit-animation-delay:-.2497s}div.spinner div.bar11{-webkit-transform:rotate(300deg) translate(0,-130%);-webkit-animation-delay:-.167s}div.spinner div.bar12{-webkit-transform:rotate(330deg) translate(0,-130%);-webkit-animation-delay:-.0833s}.warranty{transform:rotate(-45deg) translate(-28%) translateY(-125%);transition:all .5s ease}.warranty-left,.warranty-right{content:"";width:10px;height:30px;position:absolute;top:0;z-index:-100}.warranty-left{left:0;transform:rotate(45deg) scale(.7) translate(110%)}.warranty-right{right:0;transform:rotate(-45deg) scaleX(.7) translate(-110%) translateY(-15%)}
|
package/dist/index.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export * from './classes/index';
|
|
2
|
-
export * from './components/index';
|
|
3
|
-
export * from './constants/index';
|
|
4
|
-
export * from './helpers/index';
|
|
5
|
-
export * from './hooks/index';
|
|
6
|
-
export * from './i18n/index';
|
|
7
|
-
export * from './services/index';
|
|
8
|
-
export * from './stores/index';
|
|
9
|
-
export * from './types/index';
|
|
10
|
-
export * from './modules/registry';
|