infinity-forge 0.3.1 → 0.3.3
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/system/container/decorators/authorize-http-client-decorator.d.ts +8 -0
- package/dist/system/container/decorators/authorize-http-client-decorator.js +118 -0
- package/dist/system/container/decorators/authorize-http-client-decorator.js.map +1 -0
- package/dist/system/container/decorators/index.d.ts +1 -0
- package/dist/system/container/decorators/index.js +18 -0
- package/dist/system/container/decorators/index.js.map +1 -0
- package/dist/system/container/index.d.ts +2 -0
- package/dist/system/container/index.js +19 -0
- package/dist/system/container/index.js.map +1 -0
- package/dist/system/container/infra/container.d.ts +3 -0
- package/dist/system/container/infra/container.js +17 -0
- package/dist/system/container/infra/container.js.map +1 -0
- package/dist/system/container/infra/index.d.ts +3 -0
- package/dist/system/container/infra/index.js +20 -0
- package/dist/system/container/infra/index.js.map +1 -0
- package/dist/system/container/infra/make-api-url.d.ts +3 -0
- package/dist/system/container/infra/make-api-url.js +23 -0
- package/dist/system/container/infra/make-api-url.js.map +1 -0
- package/dist/system/container/infra/types.d.ts +7 -0
- package/dist/system/container/infra/types.js +11 -0
- package/dist/system/container/infra/types.js.map +1 -0
- package/dist/system/container/main.d.ts +3 -0
- package/dist/system/container/main.js +7 -0
- package/dist/system/container/main.js.map +1 -0
- package/dist/system/data/index.d.ts +1 -0
- package/dist/system/data/index.js +18 -0
- package/dist/system/data/index.js.map +1 -0
- package/dist/system/data/use-cases/auth/index.d.ts +1 -0
- package/dist/system/data/use-cases/auth/index.js +18 -0
- package/dist/system/data/use-cases/auth/index.js.map +1 -0
- package/dist/system/data/use-cases/auth/remote-auth-admin.d.ts +10 -0
- package/dist/system/data/use-cases/auth/remote-auth-admin.js +121 -0
- package/dist/system/data/use-cases/auth/remote-auth-admin.js.map +1 -0
- package/dist/system/data/use-cases/index.d.ts +1 -0
- package/dist/system/data/use-cases/index.js +18 -0
- package/dist/system/data/use-cases/index.js.map +1 -0
- package/dist/system/domain/entities/departament.d.ts +4 -0
- package/dist/system/domain/entities/departament.js +3 -0
- package/dist/system/domain/entities/departament.js.map +1 -0
- package/dist/system/domain/entities/index.d.ts +3 -0
- package/dist/system/domain/entities/index.js +20 -0
- package/dist/system/domain/entities/index.js.map +1 -0
- package/dist/system/domain/entities/roles/index.d.ts +1 -0
- package/dist/system/domain/entities/roles/index.js +18 -0
- package/dist/system/domain/entities/roles/index.js.map +1 -0
- package/dist/system/domain/entities/roles/permission.d.ts +6 -0
- package/dist/system/domain/entities/roles/permission.js +3 -0
- package/dist/system/domain/entities/roles/permission.js.map +1 -0
- package/dist/system/domain/entities/users/index.d.ts +1 -0
- package/dist/system/domain/entities/users/index.js +18 -0
- package/dist/system/domain/entities/users/index.js.map +1 -0
- package/dist/system/domain/entities/users/user-controller.d.ts +9 -0
- package/dist/system/domain/entities/users/user-controller.js +3 -0
- package/dist/system/domain/entities/users/user-controller.js.map +1 -0
- package/dist/system/domain/index.d.ts +3 -0
- package/dist/system/domain/index.js +20 -0
- package/dist/system/domain/index.js.map +1 -0
- package/dist/system/domain/protocols/cache/cache-keys.d.ts +6 -0
- package/dist/system/domain/protocols/cache/cache-keys.js +3 -0
- package/dist/system/domain/protocols/cache/cache-keys.js.map +1 -0
- package/dist/system/domain/protocols/cache/get-storage.d.ts +4 -0
- package/dist/system/domain/protocols/cache/get-storage.js +3 -0
- package/dist/system/domain/protocols/cache/get-storage.js.map +1 -0
- package/dist/system/domain/protocols/cache/index.d.ts +3 -0
- package/dist/system/domain/protocols/cache/index.js +20 -0
- package/dist/system/domain/protocols/cache/index.js.map +1 -0
- package/dist/system/domain/protocols/cache/set-storage.d.ts +4 -0
- package/dist/system/domain/protocols/cache/set-storage.js +4 -0
- package/dist/system/domain/protocols/cache/set-storage.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/http-errors/application-unexpected-error.d.ts +3 -0
- package/dist/system/domain/protocols/http/errors/http-errors/application-unexpected-error.js +29 -0
- package/dist/system/domain/protocols/http/errors/http-errors/application-unexpected-error.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/http-errors/bad-request-error.d.ts +8 -0
- package/dist/system/domain/protocols/http/errors/http-errors/bad-request-error.js +11 -0
- package/dist/system/domain/protocols/http/errors/http-errors/bad-request-error.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/http-errors/index.d.ts +5 -0
- package/dist/system/domain/protocols/http/errors/http-errors/index.js +22 -0
- package/dist/system/domain/protocols/http/errors/http-errors/index.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/http-errors/no-content.d.ts +3 -0
- package/dist/system/domain/protocols/http/errors/http-errors/no-content.js +29 -0
- package/dist/system/domain/protocols/http/errors/http-errors/no-content.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/http-errors/not-found-error.d.ts +3 -0
- package/dist/system/domain/protocols/http/errors/http-errors/not-found-error.js +29 -0
- package/dist/system/domain/protocols/http/errors/http-errors/not-found-error.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/http-errors/unexpected-error.d.ts +3 -0
- package/dist/system/domain/protocols/http/errors/http-errors/unexpected-error.js +29 -0
- package/dist/system/domain/protocols/http/errors/http-errors/unexpected-error.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/index.d.ts +2 -0
- package/dist/system/domain/protocols/http/errors/index.js +19 -0
- package/dist/system/domain/protocols/http/errors/index.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/system-errors-model/index.d.ts +1 -0
- package/dist/system/domain/protocols/http/errors/system-errors-model/index.js +18 -0
- package/dist/system/domain/protocols/http/errors/system-errors-model/index.js.map +1 -0
- package/dist/system/domain/protocols/http/errors/system-errors-model/validation-errors-model.d.ts +11 -0
- package/dist/system/domain/protocols/http/errors/system-errors-model/validation-errors-model.js +11 -0
- package/dist/system/domain/protocols/http/errors/system-errors-model/validation-errors-model.js.map +1 -0
- package/dist/system/domain/protocols/http/http-client.d.ts +28 -0
- package/dist/system/domain/protocols/http/http-client.js +18 -0
- package/dist/system/domain/protocols/http/http-client.js.map +1 -0
- package/dist/system/domain/protocols/http/index.d.ts +2 -0
- package/dist/system/domain/protocols/http/index.js +19 -0
- package/dist/system/domain/protocols/http/index.js.map +1 -0
- package/dist/system/domain/protocols/index.d.ts +2 -0
- package/dist/system/domain/protocols/index.js +19 -0
- package/dist/system/domain/protocols/index.js.map +1 -0
- package/dist/system/domain/use-cases/auth/admin/auth-admin.d.ts +20 -0
- package/dist/system/domain/use-cases/auth/admin/auth-admin.js +3 -0
- package/dist/system/domain/use-cases/auth/admin/auth-admin.js.map +1 -0
- package/dist/system/domain/use-cases/auth/admin/index.d.ts +1 -0
- package/dist/system/domain/use-cases/auth/admin/index.js +18 -0
- package/dist/system/domain/use-cases/auth/admin/index.js.map +1 -0
- package/dist/system/domain/use-cases/auth/index.d.ts +1 -0
- package/dist/system/domain/use-cases/auth/index.js +18 -0
- package/dist/system/domain/use-cases/auth/index.js.map +1 -0
- package/dist/system/domain/use-cases/index.d.ts +1 -0
- package/dist/system/domain/use-cases/index.js +18 -0
- package/dist/system/domain/use-cases/index.js.map +1 -0
- package/dist/system/index.d.ts +1 -3
- package/dist/system/index.js +1 -3
- package/dist/system/index.js.map +1 -1
- package/dist/system/infra/cache/cookie-storage-adapter.d.ts +6 -0
- package/dist/system/infra/cache/cookie-storage-adapter.js +108 -0
- package/dist/system/infra/cache/cookie-storage-adapter.js.map +1 -0
- package/dist/system/infra/cache/index.d.ts +2 -0
- package/dist/system/infra/cache/index.js +19 -0
- package/dist/system/infra/cache/index.js.map +1 -0
- package/dist/system/infra/cache/storage-type.d.ts +2 -0
- package/dist/system/infra/cache/storage-type.js +3 -0
- package/dist/system/infra/cache/storage-type.js.map +1 -0
- package/dist/system/infra/http/axios-http-client.d.ts +4 -0
- package/dist/system/infra/http/axios-http-client.js +109 -0
- package/dist/system/infra/http/axios-http-client.js.map +1 -0
- package/dist/system/infra/http/index.d.ts +1 -0
- package/dist/system/infra/http/index.js +18 -0
- package/dist/system/infra/http/index.js.map +1 -0
- package/dist/system/infra/index.d.ts +4 -0
- package/dist/system/infra/index.js +21 -0
- package/dist/system/infra/index.js.map +1 -0
- package/dist/system/infra/server/headers.d.ts +5 -0
- package/dist/system/infra/server/headers.js +3 -0
- package/dist/system/infra/server/headers.js.map +1 -0
- package/dist/system/infra/server/index.d.ts +1 -0
- package/dist/system/infra/server/index.js +18 -0
- package/dist/system/infra/server/index.js.map +1 -0
- package/dist/system/infra/type-models/birthday.d.ts +1 -0
- package/dist/system/infra/type-models/birthday.js +3 -0
- package/dist/system/infra/type-models/birthday.js.map +1 -0
- package/dist/system/infra/type-models/index.d.ts +2 -0
- package/dist/system/infra/type-models/index.js +19 -0
- package/dist/system/infra/type-models/index.js.map +1 -0
- package/dist/system/infra/type-models/zipcode.d.ts +1 -0
- package/dist/system/infra/type-models/zipcode.js +3 -0
- package/dist/system/infra/type-models/zipcode.js.map +1 -0
- package/dist/system/presentation/components/data/avatar/index.d.ts +4 -0
- package/dist/system/presentation/components/data/avatar/index.js +57 -0
- package/dist/system/presentation/components/data/avatar/index.js.map +1 -0
- package/dist/system/presentation/components/data/avatar/styles.d.ts +2 -0
- package/dist/system/presentation/components/data/avatar/styles.js +14 -0
- package/dist/system/presentation/components/data/avatar/styles.js.map +1 -0
- package/dist/system/presentation/components/data/cards/index.d.ts +1 -0
- package/dist/system/presentation/components/data/cards/index.js +18 -0
- package/dist/system/presentation/components/data/cards/index.js.map +1 -0
- package/dist/system/presentation/components/data/cards/message-card/index.d.ts +2 -0
- package/dist/system/presentation/components/data/cards/message-card/index.js +37 -0
- package/dist/system/presentation/components/data/cards/message-card/index.js.map +1 -0
- package/dist/system/presentation/components/data/cards/message-card/styles.d.ts +2 -0
- package/dist/system/presentation/components/data/cards/message-card/styles.js +14 -0
- package/dist/system/presentation/components/data/cards/message-card/styles.js.map +1 -0
- package/dist/system/presentation/components/data/index.d.ts +9 -0
- package/dist/system/presentation/components/data/index.js +26 -0
- package/dist/system/presentation/components/data/index.js.map +1 -0
- package/dist/system/presentation/components/data/logo/index.d.ts +1 -0
- package/dist/system/presentation/components/data/logo/index.js +34 -0
- package/dist/system/presentation/components/data/logo/index.js.map +1 -0
- package/dist/system/presentation/components/data/logo/styles.d.ts +2 -0
- package/dist/system/presentation/components/data/logo/styles.js +14 -0
- package/dist/system/presentation/components/data/logo/styles.js.map +1 -0
- package/dist/system/presentation/components/data/overlay/index.d.ts +2 -0
- package/dist/system/presentation/components/data/overlay/index.js +35 -0
- package/dist/system/presentation/components/data/overlay/index.js.map +1 -0
- package/dist/system/presentation/components/data/overlay/interfaces.d.ts +7 -0
- package/dist/system/presentation/components/data/overlay/interfaces.js +3 -0
- package/dist/system/presentation/components/data/overlay/interfaces.js.map +1 -0
- package/dist/system/presentation/components/data/overlay/styles.d.ts +7 -0
- package/dist/system/presentation/components/data/overlay/styles.js +15 -0
- package/dist/system/presentation/components/data/overlay/styles.js.map +1 -0
- package/dist/system/presentation/components/data/page-wrapper/index.d.ts +2 -0
- package/dist/system/presentation/components/data/page-wrapper/index.js +35 -0
- package/dist/system/presentation/components/data/page-wrapper/index.js.map +1 -0
- package/dist/system/presentation/components/data/page-wrapper/interfaces.d.ts +5 -0
- package/dist/system/presentation/components/data/page-wrapper/interfaces.js +3 -0
- package/dist/system/presentation/components/data/page-wrapper/interfaces.js.map +1 -0
- package/dist/system/presentation/components/data/page-wrapper/styles.d.ts +4 -0
- package/dist/system/presentation/components/data/page-wrapper/styles.js +14 -0
- package/dist/system/presentation/components/data/page-wrapper/styles.js.map +1 -0
- package/dist/system/presentation/components/data/popover/index.d.ts +2 -0
- package/dist/system/presentation/components/data/popover/index.js +10 -0
- package/dist/system/presentation/components/data/popover/index.js.map +1 -0
- package/dist/system/presentation/components/data/popover/interfaces.d.ts +8 -0
- package/dist/system/presentation/components/data/popover/interfaces.js +3 -0
- package/dist/system/presentation/components/data/popover/interfaces.js.map +1 -0
- package/dist/system/presentation/components/data/sign-in/index.d.ts +1 -0
- package/dist/system/presentation/components/data/sign-in/index.js +36 -0
- package/dist/system/presentation/components/data/sign-in/index.js.map +1 -0
- package/dist/system/presentation/components/data/sign-in/styles.d.ts +4 -0
- package/dist/system/presentation/components/data/sign-in/styles.js +14 -0
- package/dist/system/presentation/components/data/sign-in/styles.js.map +1 -0
- package/dist/system/presentation/components/data/sign-up/index.d.ts +1 -0
- package/dist/system/presentation/components/data/sign-up/index.js +36 -0
- package/dist/system/presentation/components/data/sign-up/index.js.map +1 -0
- package/dist/system/presentation/components/data/sign-up/styles.d.ts +4 -0
- package/dist/system/presentation/components/data/sign-up/styles.js +14 -0
- package/dist/system/presentation/components/data/sign-up/styles.js.map +1 -0
- package/dist/system/presentation/components/data/skeleton/index.d.ts +2 -0
- package/dist/system/presentation/components/data/skeleton/index.js +35 -0
- package/dist/system/presentation/components/data/skeleton/index.js.map +1 -0
- package/dist/system/presentation/components/data/skeleton/interfaces.d.ts +4 -0
- package/dist/system/presentation/components/data/skeleton/interfaces.js +3 -0
- package/dist/system/presentation/components/data/skeleton/interfaces.js.map +1 -0
- package/dist/system/presentation/components/data/skeleton/styles.d.ts +4 -0
- package/dist/system/presentation/components/data/skeleton/styles.js +14 -0
- package/dist/system/presentation/components/data/skeleton/styles.js.map +1 -0
- package/dist/system/presentation/components/index.d.ts +2 -0
- package/dist/system/presentation/components/index.js +19 -0
- package/dist/system/presentation/components/index.js.map +1 -0
- package/dist/system/presentation/components/layout/component.d.ts +4 -0
- package/dist/system/presentation/components/layout/component.js +36 -0
- package/dist/system/presentation/components/layout/component.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/index.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/index.js +19 -0
- package/dist/system/presentation/components/layout/header/components/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/index.js +38 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/index.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/index.js +54 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/interfaces.d.ts +6 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/interfaces.js +3 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/interfaces.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/content/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/index.js +31 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/messages/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/index.js +11 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/notifications/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/index.js +56 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/content/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/index.js +37 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/profile/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/settings/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/settings/index.js +42 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/settings/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/settings/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/settings/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/settings/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/menu-right/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/index.js +39 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/search-list/index.d.ts +4 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/search-list/index.js +61 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/search-list/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/search-list/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/search-list/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/search-list/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/trigger/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/trigger/index.js +45 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/trigger/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/trigger/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/trigger/styles.js +14 -0
- package/dist/system/presentation/components/layout/header/components/search-modal/trigger/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/header/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/index.js +15 -0
- package/dist/system/presentation/components/layout/header/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/version-01/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/header/version-01/index.js +36 -0
- package/dist/system/presentation/components/layout/header/version-01/index.js.map +1 -0
- package/dist/system/presentation/components/layout/header/version-01/styles.d.ts +6 -0
- package/dist/system/presentation/components/layout/header/version-01/styles.js +37 -0
- package/dist/system/presentation/components/layout/header/version-01/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/index.d.ts +3 -0
- package/dist/system/presentation/components/layout/index.js +20 -0
- package/dist/system/presentation/components/layout/index.js.map +1 -0
- package/dist/system/presentation/components/layout/menu/components/index.d.ts +2 -0
- package/dist/system/presentation/components/layout/menu/components/index.js +19 -0
- package/dist/system/presentation/components/layout/menu/components/index.js.map +1 -0
- package/dist/system/presentation/components/layout/menu/components/menu/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/menu/components/menu/index.js +59 -0
- package/dist/system/presentation/components/layout/menu/components/menu/index.js.map +1 -0
- package/dist/system/presentation/components/layout/menu/components/menu/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/menu/components/menu/styles.js +14 -0
- package/dist/system/presentation/components/layout/menu/components/menu/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/menu/components/select-workspace/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/menu/components/select-workspace/index.js +78 -0
- package/dist/system/presentation/components/layout/menu/components/select-workspace/index.js.map +1 -0
- package/dist/system/presentation/components/layout/menu/components/select-workspace/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/menu/components/select-workspace/styles.js +14 -0
- package/dist/system/presentation/components/layout/menu/components/select-workspace/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/menu/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/menu/index.js +15 -0
- package/dist/system/presentation/components/layout/menu/index.js.map +1 -0
- package/dist/system/presentation/components/layout/menu/version-01/index.d.ts +1 -0
- package/dist/system/presentation/components/layout/menu/version-01/index.js +35 -0
- package/dist/system/presentation/components/layout/menu/version-01/index.js.map +1 -0
- package/dist/system/presentation/components/layout/menu/version-01/styles.d.ts +2 -0
- package/dist/system/presentation/components/layout/menu/version-01/styles.js +14 -0
- package/dist/system/presentation/components/layout/menu/version-01/styles.js.map +1 -0
- package/dist/system/presentation/components/layout/styles.d.ts +4 -0
- package/dist/system/presentation/components/layout/styles.js +14 -0
- package/dist/system/presentation/components/layout/styles.js.map +1 -0
- package/dist/system/presentation/configs/index.d.ts +3 -0
- package/dist/system/presentation/configs/index.js +20 -0
- package/dist/system/presentation/configs/index.js.map +1 -0
- package/dist/system/presentation/configs/menu.d.ts +10 -0
- package/dist/system/presentation/configs/menu.js +18 -0
- package/dist/system/presentation/configs/menu.js.map +1 -0
- package/dist/system/presentation/configs/page-links.d.ts +7 -0
- package/dist/system/presentation/configs/page-links.js +319 -0
- package/dist/system/presentation/configs/page-links.js.map +1 -0
- package/dist/system/presentation/configs/routes.d.ts +10 -0
- package/dist/system/presentation/configs/routes.js +14 -0
- package/dist/system/presentation/configs/routes.js.map +1 -0
- package/dist/system/presentation/hooks/index.d.ts +1 -0
- package/dist/system/presentation/hooks/index.js +18 -0
- package/dist/system/presentation/hooks/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/index.d.ts +1 -0
- package/dist/system/presentation/hooks/ui/index.js +18 -0
- package/dist/system/presentation/hooks/ui/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/component.d.ts +5 -0
- package/dist/system/presentation/hooks/ui/use-table/component.js +14 -0
- package/dist/system/presentation/hooks/ui/use-table/component.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/active-indicator/index.d.ts +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/active-indicator/index.js +33 -0
- package/dist/system/presentation/hooks/ui/use-table/components/active-indicator/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/active-indicator/styles.d.ts +4 -0
- package/dist/system/presentation/hooks/ui/use-table/components/active-indicator/styles.js +14 -0
- package/dist/system/presentation/hooks/ui/use-table/components/active-indicator/styles.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/index.d.ts +3 -0
- package/dist/system/presentation/hooks/ui/use-table/components/index.js +20 -0
- package/dist/system/presentation/hooks/ui/use-table/components/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/index.d.ts +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/index.js +33 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/styles.d.ts +4 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/styles.js +14 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/styles.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/index.d.ts +2 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/index.js +56 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/interfaces.d.ts +7 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/interfaces.js +3 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/interfaces.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/styles.d.ts +8 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/styles.js +14 -0
- package/dist/system/presentation/hooks/ui/use-table/components/searchbar/styles.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/index.d.ts +2 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/index.js +92 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/interfaces.d.ts +16 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/interfaces.js +3 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/interfaces.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/loader-table/index.d.ts +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/loader-table/index.js +33 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/loader-table/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/loader-table/styles.d.ts +4 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/loader-table/styles.js +14 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/loader-table/styles.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/styles.d.ts +4 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/styles.js +14 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/styles.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/index.d.ts +2 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/index.js +50 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/interfaces.d.ts +6 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/interfaces.js +3 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/interfaces.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/styles.d.ts +4 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/styles.js +14 -0
- package/dist/system/presentation/hooks/ui/use-table/components/table/thead-item/styles.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/index.d.ts +5 -0
- package/dist/system/presentation/hooks/ui/use-table/index.js +22 -0
- package/dist/system/presentation/hooks/ui/use-table/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/interfaces.d.ts +58 -0
- package/dist/system/presentation/hooks/ui/use-table/interfaces.js +3 -0
- package/dist/system/presentation/hooks/ui/use-table/interfaces.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/query/index.d.ts +6 -0
- package/dist/system/presentation/hooks/ui/use-table/query/index.js +30 -0
- package/dist/system/presentation/hooks/ui/use-table/query/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/query/interfaces.d.ts +33 -0
- package/dist/system/presentation/hooks/ui/use-table/query/interfaces.js +3 -0
- package/dist/system/presentation/hooks/ui/use-table/query/interfaces.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/query/service.d.ts +25 -0
- package/dist/system/presentation/hooks/ui/use-table/query/service.js +113 -0
- package/dist/system/presentation/hooks/ui/use-table/query/service.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/buffer.d.ts +3 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/buffer.js +32 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/buffer.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/filter-empty-values.d.ts +1 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/filter-empty-values.js +22 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/filter-empty-values.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/index.d.ts +4 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/index.js +21 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/index.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/is-object-empty.d.ts +1 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/is-object-empty.js +12 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/is-object-empty.js.map +1 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/update-route.d.ts +6 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/update-route.js +31 -0
- package/dist/system/presentation/hooks/ui/use-table/utils/update-route.js.map +1 -0
- package/dist/system/presentation/index.d.ts +3 -0
- package/dist/system/presentation/index.js +20 -0
- package/dist/system/presentation/index.js.map +1 -0
- package/dist/ui/components/form/input/index.js +1 -1
- package/dist/ui/components/form/input/index.js.map +1 -1
- package/dist/ui/components/form/select/index.js +3 -4
- package/dist/ui/components/form/select/index.js.map +1 -1
- package/package.json +5 -2
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.pageLinks = void 0;
|
|
4
|
+
exports.pageLinks = [
|
|
5
|
+
{
|
|
6
|
+
name: 'Home',
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
name: 'E-Commerce',
|
|
10
|
+
href: '#',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'Support',
|
|
14
|
+
href: '#',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
name: 'Logistics',
|
|
18
|
+
href: '#',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: 'Analytics',
|
|
22
|
+
href: '#',
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: 'File',
|
|
26
|
+
href: '#',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Apps',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Products',
|
|
33
|
+
href: '#',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Product Details',
|
|
37
|
+
href: '#',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Create Product',
|
|
41
|
+
href: '#',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Edit Product',
|
|
45
|
+
href: '#',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Categories',
|
|
49
|
+
href: '#',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: 'Create Category',
|
|
53
|
+
href: '#',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
name: 'Edit Category',
|
|
57
|
+
href: '#',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: 'Orders',
|
|
61
|
+
href: '#',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: 'Order Details',
|
|
65
|
+
href: '#',
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
name: 'Create Order',
|
|
69
|
+
href: '#',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
name: 'Edit Order',
|
|
73
|
+
href: '#',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
name: 'Reviews',
|
|
77
|
+
href: '#',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
name: 'Shop',
|
|
81
|
+
href: '#',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
name: 'Cart',
|
|
85
|
+
href: '#',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'Checkout & Payment',
|
|
89
|
+
href: '#',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
name: 'Support Inbox',
|
|
93
|
+
href: '#',
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
name: 'Support Snippets',
|
|
97
|
+
href: '#',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
name: 'Support Templates',
|
|
101
|
+
href: '#',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
name: 'Invoice List',
|
|
105
|
+
href: '#',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: 'Invoice Details',
|
|
109
|
+
href: '#',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: 'Create Invoice',
|
|
113
|
+
href: '#',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
name: 'Edit Invoice',
|
|
117
|
+
href: '#',
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
name: 'Shipment List',
|
|
121
|
+
href: '#',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
name: 'Shipment Details',
|
|
125
|
+
href: '#',
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: 'Tracking',
|
|
129
|
+
href: '#',
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
name: 'File Manager',
|
|
133
|
+
href: '#',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
name: 'Widgets',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
name: 'Cards',
|
|
140
|
+
href: '#',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: 'Icons',
|
|
144
|
+
href: '#',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
name: 'Charts',
|
|
148
|
+
href: '#',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: 'Maps',
|
|
152
|
+
href: '#',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
name: 'Forms',
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: 'Profile Settings',
|
|
159
|
+
href: '#',
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
name: 'Notification Preference',
|
|
163
|
+
href: '#',
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
name: 'Personal Information',
|
|
167
|
+
href: '#',
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: 'Newsletter',
|
|
171
|
+
href: '#',
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
name: 'Payment checkout',
|
|
175
|
+
href: '#',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
name: 'Tables',
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
name: 'Basic',
|
|
182
|
+
href: '#',
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
name: 'Collapsible',
|
|
186
|
+
href: '#',
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
name: 'Enhanced',
|
|
190
|
+
href: '#',
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
name: 'Sticky Header',
|
|
194
|
+
href: '#',
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
name: 'Pagination',
|
|
198
|
+
href: '#',
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
name: 'Search',
|
|
202
|
+
href: '#',
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
name: 'Pages',
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
name: 'Profile',
|
|
209
|
+
href: '#',
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
name: 'Welcome',
|
|
213
|
+
href: '#',
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
name: 'Coming soon',
|
|
217
|
+
href: '#',
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
name: 'Access Denied',
|
|
221
|
+
href: '#',
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
name: 'Not Found',
|
|
225
|
+
href: '#',
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
name: 'Maintenance',
|
|
229
|
+
href: '#',
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: 'Blank',
|
|
233
|
+
href: '#',
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
name: 'Authentication',
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
name: 'Modern Sign Up',
|
|
240
|
+
href: '#',
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
name: 'Vintage Sign Up',
|
|
244
|
+
href: '#',
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: 'Trendy Sign Up',
|
|
248
|
+
href: '#',
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
name: 'Elegant Sign Up',
|
|
252
|
+
href: '#',
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
name: 'Classic Sign Up',
|
|
256
|
+
href: '#',
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
name: 'Modern Sign In',
|
|
260
|
+
href: '#',
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
name: 'Vintage Sign In',
|
|
264
|
+
href: '#',
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
name: 'Trendy Sign In',
|
|
268
|
+
href: '#',
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
name: 'Elegant Sign In',
|
|
272
|
+
href: '#',
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
name: 'Classic Sign In',
|
|
276
|
+
href: '#',
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
name: 'Modern Forgot Password',
|
|
280
|
+
href: '#',
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
name: 'Vintage Forgot Password',
|
|
284
|
+
href: '#',
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
name: 'Trendy Forgot Password',
|
|
288
|
+
href: '#',
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
name: 'Elegant Forgot Password',
|
|
292
|
+
href: '#',
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
name: 'Classic Forgot Password',
|
|
296
|
+
href: '#',
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
name: 'Modern OTP Page',
|
|
300
|
+
href: '#',
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
name: 'Vintage OTP Page',
|
|
304
|
+
href: '#',
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
name: 'Trendy OTP Page',
|
|
308
|
+
href: '#',
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
name: 'Elegant OTP Page',
|
|
312
|
+
href: '#',
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
name: 'Classic OTP Page',
|
|
316
|
+
href: '#',
|
|
317
|
+
},
|
|
318
|
+
];
|
|
319
|
+
//# sourceMappingURL=page-links.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page-links.js","sourceRoot":"","sources":["../../../../src/system/presentation/configs/page-links.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.routes = void 0;
|
|
4
|
+
exports.routes = {
|
|
5
|
+
user: {
|
|
6
|
+
profile: '#profile',
|
|
7
|
+
settings: '#profile-settings',
|
|
8
|
+
activityLog: '#profile-log',
|
|
9
|
+
},
|
|
10
|
+
support: {
|
|
11
|
+
inbox: '#inbox',
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=routes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"routes.js","sourceRoot":"","sources":["../../../../src/system/presentation/configs/routes.ts"],"names":[],"mappings":";;;AAAa,QAAA,MAAM,GAAG;IACpB,IAAI,EAAE;QACJ,OAAO,EAAE,UAAU;QACnB,QAAQ,EAAE,mBAAmB;QAC7B,WAAW,EAAE,cAAc;KAC5B;IACD,OAAO,EAAE;QACP,KAAK,EAAE,QAAQ;KAChB;CACF,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./ui/index.js";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./ui/index.js"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/system/presentation/hooks/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uCAAoB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./use-table/index.js";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./use-table/index.js"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/system/presentation/hooks/ui/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA2B"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useTable = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
var components_1 = require("./components/index.js");
|
|
6
|
+
function useTable(_a) {
|
|
7
|
+
var columnsTable = _a.columnsTable, configs = _a.configs;
|
|
8
|
+
return {
|
|
9
|
+
Table: ((0, jsx_runtime_1.jsx)(components_1.Table, { configs: configs, columnsTable: columnsTable, isFetching: false, tableInformations: { items: configs === null || configs === void 0 ? void 0 : configs.tableData, hasNextPage: false, hasPreviousPage: false, pageIndex: 0, pageSize: 0, totalCount: 0, totalPages: 0 } })),
|
|
10
|
+
SearchBar: ((0, jsx_runtime_1.jsx)(components_1.SearchBar, { isFetching: false, options: [] })),
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
exports.useTable = useTable;
|
|
14
|
+
//# sourceMappingURL=component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../../../src/system/presentation/hooks/ui/use-table/component.tsx"],"names":[],"mappings":";;;;AAAA,2CAGsB;AAItB,SAAgB,QAAQ,CAAC,EAAyC;QAAvC,YAAY,kBAAA,EAAE,OAAO,aAAA;IAE9C,OAAO;QACL,KAAK,EAAE,CACL,uBAAC,kBAAK,IACJ,OAAO,EAAE,OAAO,EAChB,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,KAAK,EACjB,iBAAiB,EAAE,EAAE,KAAK,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,SAAS,EAAE,WAAW,EAAE,KAAK,EAAE,eAAe,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,EAAE,QAAQ,EAAE,CAAC,EAAE,UAAU,EAAE,CAAC,EAAE,UAAU,EAAE,CAAC,EAAE,GACrJ,CACH;QACD,SAAS,EAAE,CACT,uBAAC,sBAAS,IACR,UAAU,EAAE,KAAK,EACjB,OAAO,EAAE,EAAE,GACX,CACH;KACF,CAAC;AACJ,CAAC;AAlBD,4BAkBC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ActiveIndicator(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.ActiveIndicator = void 0;
|
|
27
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
28
|
+
var S = __importStar(require("./styles.js"));
|
|
29
|
+
function ActiveIndicator() {
|
|
30
|
+
return (0, jsx_runtime_1.jsx)(S.ActiveIndicator, { className: "active-indicator" });
|
|
31
|
+
}
|
|
32
|
+
exports.ActiveIndicator = ActiveIndicator;
|
|
33
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../src/system/presentation/hooks/ui/use-table/components/active-indicator/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,0CAA6B;AAE7B,SAAgB,eAAe;IAC3B,OAAO,uBAAC,CAAC,CAAC,eAAe,IAAC,SAAS,EAAC,kBAAkB,GAAE,CAAA;AAC5D,CAAC;AAFD,0CAEC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const ActiveIndicator: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3
|
+
ref?: import("react").Ref<HTMLDivElement>;
|
|
4
|
+
}, never>>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
8
|
+
};
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.ActiveIndicator = void 0;
|
|
11
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
12
|
+
exports.ActiveIndicator = (0, styled_components_1.default)("div")(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: absolute;\n width: 14px;\n height: 14px;\n border: 3px solid #fff;\n border-radius: 100%;\n background-color: #000;\n"], ["\n position: absolute;\n width: 14px;\n height: 14px;\n border: 3px solid #fff;\n border-radius: 100%;\n background-color: #000;\n"])));
|
|
13
|
+
var templateObject_1;
|
|
14
|
+
//# sourceMappingURL=styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../../../../../../src/system/presentation/hooks/ui/use-table/components/active-indicator/styles.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,wEAAuC;AAE1B,QAAA,eAAe,GAAG,IAAA,2BAAM,EAAC,KAAK,CAAC,6MAAA,0IAO3C,KAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./table/index.js"), exports);
|
|
18
|
+
__exportStar(require("./searchbar/index.js"), exports);
|
|
19
|
+
__exportStar(require("./active-indicator/index.js"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/system/presentation/hooks/ui/use-table/components/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAuB;AACvB,8CAA2B;AAC3B,qDAAkC"}
|
package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ActiveIndicator(): import("react/jsx-runtime").JSX.Element;
|
package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/index.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.ActiveIndicator = void 0;
|
|
27
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
28
|
+
var S = __importStar(require("./styles.js"));
|
|
29
|
+
function ActiveIndicator() {
|
|
30
|
+
return (0, jsx_runtime_1.jsx)(S.ActiveIndicator, { className: "active-indicator" });
|
|
31
|
+
}
|
|
32
|
+
exports.ActiveIndicator = ActiveIndicator;
|
|
33
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,0CAA6B;AAE7B,SAAgB,eAAe;IAC3B,OAAO,uBAAC,CAAC,CAAC,eAAe,IAAC,SAAS,EAAC,kBAAkB,GAAE,CAAA;AAC5D,CAAC;AAFD,0CAEC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const ActiveIndicator: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3
|
+
ref?: import("react").Ref<HTMLDivElement>;
|
|
4
|
+
}, never>>;
|
package/dist/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/styles.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
8
|
+
};
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.ActiveIndicator = void 0;
|
|
11
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
12
|
+
exports.ActiveIndicator = (0, styled_components_1.default)("div")(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: absolute;\n width: 14px;\n height: 14px;\n border: 3px solid #fff;\n border-radius: 100%;\n background-color: #000;\n"], ["\n position: absolute;\n width: 14px;\n height: 14px;\n border: 3px solid #fff;\n border-radius: 100%;\n background-color: #000;\n"])));
|
|
13
|
+
var templateObject_1;
|
|
14
|
+
//# sourceMappingURL=styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../../../../../../../src/system/presentation/hooks/ui/use-table/components/searchbar/active-indicator/styles.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,wEAAuC;AAE1B,QAAA,eAAe,GAAG,IAAA,2BAAM,EAAC,KAAK,CAAC,6MAAA,0IAO3C,KAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.SearchBar = void 0;
|
|
27
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
28
|
+
var react_1 = require("react");
|
|
29
|
+
var router_1 = require("next/router");
|
|
30
|
+
var ui_1 = require("../../../../../../../ui/index.js");
|
|
31
|
+
var utils_1 = require("../../utils/index.js");
|
|
32
|
+
var active_indicator_1 = require("../active-indicator/index.js");
|
|
33
|
+
var S = __importStar(require("./styles.js"));
|
|
34
|
+
function SearchBar(_a) {
|
|
35
|
+
var _b, _c, _d;
|
|
36
|
+
var isFetching = _a.isFetching;
|
|
37
|
+
var router = (0, router_1.useRouter)();
|
|
38
|
+
var _e = (0, react_1.useState)(((_b = router.query) === null || _b === void 0 ? void 0 : _b.search) || ""), search = _e[0], setSearch = _e[1];
|
|
39
|
+
var _f = (0, react_1.useState)(false), error = _f[0], setError = _f[1];
|
|
40
|
+
function handleChange(ev) {
|
|
41
|
+
setSearch(ev.target.value);
|
|
42
|
+
(0, utils_1.updateRoute)({ params: { search: ev.target.value }, router: router });
|
|
43
|
+
}
|
|
44
|
+
(0, react_1.useEffect)(function () {
|
|
45
|
+
if (search.length > 0) {
|
|
46
|
+
setError(false);
|
|
47
|
+
}
|
|
48
|
+
}, [search]);
|
|
49
|
+
(0, react_1.useEffect)(function () {
|
|
50
|
+
var _a;
|
|
51
|
+
setSearch(((_a = router.query) === null || _a === void 0 ? void 0 : _a.search) || "");
|
|
52
|
+
}, [(_c = router.query) === null || _c === void 0 ? void 0 : _c.search]);
|
|
53
|
+
return ((0, jsx_runtime_1.jsx)(ui_1.Error, { name: "search-table", children: (0, jsx_runtime_1.jsx)(S.SearchBar, { "$error": !!error, children: (0, jsx_runtime_1.jsx)("div", { className: "search", children: ((_d = router.query) === null || _d === void 0 ? void 0 : _d.search) && (0, jsx_runtime_1.jsx)(active_indicator_1.ActiveIndicator, {}) }) }) }));
|
|
54
|
+
}
|
|
55
|
+
exports.SearchBar = SearchBar;
|
|
56
|
+
//# sourceMappingURL=index.js.map
|