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.
Files changed (50) hide show
  1. package/dist/components/ui/badge.d.ts +1 -1
  2. package/dist/components/ui/button.d.ts +1 -1
  3. package/dist/hooks/index.d.ts +1 -1
  4. package/dist/hooks/{useI18n.d.ts → useLanguage.d.ts} +1 -1
  5. package/dist/index.js +2282 -25898
  6. package/dist/modules/CoreAuth/registry/hooks/index.d.ts +0 -0
  7. package/dist/modules/CoreAuth/registry/index.d.ts +4 -0
  8. package/dist/modules/CoreAuth/registry/types/index.d.ts +1 -0
  9. package/dist/modules/CoreAuth/registry/ui/index.d.ts +1 -0
  10. package/dist/modules/CoreCustomization/registry/hooks/index.d.ts +0 -0
  11. package/dist/modules/CoreCustomization/registry/index.d.ts +2 -0
  12. package/dist/modules/CoreCustomization/registry/types/index.d.ts +1 -0
  13. package/dist/modules/CoreCustomization/registry/ui/index.d.ts +0 -0
  14. package/dist/modules/CoreOrder/registry/hooks/index.d.ts +0 -0
  15. package/dist/modules/CoreOrder/registry/index.d.ts +2 -0
  16. package/dist/modules/CoreOrder/registry/types/index.d.ts +1 -0
  17. package/dist/modules/CoreOrder/registry/ui/index.d.ts +0 -0
  18. package/dist/modules/CorePayForm/classes/CorePayFormBuilder.d.ts +2 -2
  19. package/dist/modules/CorePayForm/registry/hooks/index.d.ts +0 -0
  20. package/dist/modules/CorePayForm/registry/index.d.ts +2 -0
  21. package/dist/modules/CorePayForm/registry/types/index.d.ts +1 -0
  22. package/dist/modules/CorePayForm/registry/ui/index.d.ts +0 -0
  23. package/dist/modules/CoreProduct/classes/CoreProductBuilder.d.ts +2 -2
  24. package/dist/modules/CoreProduct/registry/hooks/index.d.ts +0 -0
  25. package/dist/modules/CoreProduct/registry/index.d.ts +2 -0
  26. package/dist/modules/CoreProduct/registry/types/index.d.ts +1 -0
  27. package/dist/modules/CoreProduct/registry/ui/index.d.ts +1 -0
  28. package/dist/modules/CoreShopCart/registry/hooks/index.d.ts +0 -0
  29. package/dist/modules/CoreShopCart/registry/index.d.ts +3 -0
  30. package/dist/modules/CoreShopCart/registry/types/index.d.ts +1 -0
  31. package/dist/modules/CoreShopCart/registry/ui/index.d.ts +1 -0
  32. package/dist/modules/registry/hooks/index.d.ts +0 -0
  33. package/dist/modules/registry/index.d.ts +6 -0
  34. package/dist/modules/registry/types/index.d.ts +6 -0
  35. package/dist/modules/registry/ui/index.d.ts +3 -0
  36. package/dist/registry/hooks/index.d.ts +1 -0
  37. package/dist/registry/index.d.ts +7 -0
  38. package/dist/registry/types/index.d.ts +2 -0
  39. package/dist/registry/ui/index.d.ts +2 -0
  40. package/dist/stores/customizationStore.d.ts +5 -5
  41. package/package.json +19 -1
  42. package/dist/index.css +0 -1
  43. package/dist/index.d.ts +0 -10
  44. package/dist/modules/CoreAuth/registry.d.ts +0 -6
  45. package/dist/modules/CoreCustomization/registry.d.ts +0 -3
  46. package/dist/modules/CoreOrder/registry.d.ts +0 -3
  47. package/dist/modules/CorePayForm/registry.d.ts +0 -3
  48. package/dist/modules/CoreProduct/registry.d.ts +0 -4
  49. package/dist/modules/CoreShopCart/registry.d.ts +0 -5
  50. package/dist/modules/registry.d.ts +0 -6
@@ -0,0 +1,4 @@
1
+ export * from '../constants/index';
2
+ export * from '../hooks/index';
3
+ export * from '../services/index';
4
+ export * from '../stores/index';
@@ -0,0 +1 @@
1
+ export * from '../../types/index';
@@ -0,0 +1 @@
1
+ export * from '../../components/index';
@@ -0,0 +1,2 @@
1
+ export * from '../classes/index';
2
+ export * from '../services/index';
@@ -0,0 +1 @@
1
+ export * from '../../types/index';
@@ -0,0 +1,2 @@
1
+ export * from '../classes/index';
2
+ export * from '../services/index';
@@ -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('../../..').BasePagination<CorePayForm> | null;
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('../../..').BasePagination<CorePayForm> | null;
19
+ payForms: import('../../../types').BasePagination<CorePayForm> | null;
20
20
  }>>;
21
21
  };
22
22
  }>;
@@ -0,0 +1,2 @@
1
+ export * from '../classes/index';
2
+ export * from '../services/index';
@@ -0,0 +1 @@
1
+ export * from '../../types/index';
@@ -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('../../..').BasePagination<CoreProduct> | null;
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('../../..').BasePagination<CoreProduct> | null;
21
+ products: import('../../../types').BasePagination<CoreProduct> | null;
22
22
  }>>;
23
23
  };
24
24
  }>;
@@ -0,0 +1,2 @@
1
+ export * from '../classes/index';
2
+ export * from '../services/index';
@@ -0,0 +1 @@
1
+ export * from '../../types/index';
@@ -0,0 +1 @@
1
+ export * from '../../components/index';
@@ -0,0 +1,3 @@
1
+ export * from '../classes/index';
2
+ export * from '../constants/index';
3
+ export * from '../services/index';
@@ -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,3 @@
1
+ export * from '../../CoreAuth/registry/ui/index';
2
+ export * from '../../CoreProduct/registry/ui/index';
3
+ export * from '../../CoreShopCart/registry/ui/index';
@@ -0,0 +1 @@
1
+ export * from '../../hooks/index';
@@ -0,0 +1,7 @@
1
+ export * from '../classes/index';
2
+ export * from '../constants/index';
3
+ export * from '../helpers/index';
4
+ export * from '../i18n/index';
5
+ export * from '../services/index';
6
+ export * from '../stores/index';
7
+ export * from '../modules/registry/index';
@@ -0,0 +1,2 @@
1
+ export * from '../../types/index';
2
+ export * from '../../modules/registry/types/index';
@@ -0,0 +1,2 @@
1
+ export * from '../../components/index';
2
+ export * from '../../modules/registry/ui/index';
@@ -1,6 +1,6 @@
1
- export declare const useCustomizationStore: import('zustand').UseBoundStore<Omit<import('zustand').StoreApi<import('..').CoreCustomizationStore>, "persist"> & {
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('..').CoreCustomizationStore, {
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('..').CoreCustomizationStore) => void) => () => void;
13
- onFinishHydration: (fn: (state: import('..').CoreCustomizationStore) => void) => () => void;
14
- getOptions: () => Partial<import('zustand/middleware').PersistOptions<import('..').CoreCustomizationStore, {
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.4",
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';
@@ -1,6 +0,0 @@
1
- export * from './components/index';
2
- export * from './constants/index';
3
- export * from './hooks/index';
4
- export * from './services/index';
5
- export * from './stores/index';
6
- export * from './types/index';
@@ -1,3 +0,0 @@
1
- export * from './classes/index';
2
- export * from './services/index';
3
- export * from './types/index';
@@ -1,3 +0,0 @@
1
- export * from './classes/index';
2
- export * from './services/index';
3
- export * from './types/index';
@@ -1,3 +0,0 @@
1
- export * from './classes/index';
2
- export * from './services/index';
3
- export * from './types/index';
@@ -1,4 +0,0 @@
1
- export * from './classes/index';
2
- export * from './components/index';
3
- export * from './services/index';
4
- export * from './types/index';
@@ -1,5 +0,0 @@
1
- export * from './classes/index';
2
- export * from './components/index';
3
- export * from './constants/index';
4
- export * from './services/index';
5
- export * from './types/index';
@@ -1,6 +0,0 @@
1
- export * from './CoreAuth/registry';
2
- export * from './CoreCustomization/registry';
3
- export * from './CoreOrder/registry';
4
- export * from './CorePayForm/registry';
5
- export * from './CoreProduct/registry';
6
- export * from './CoreShopCart/registry';