uibee 1.7.0 → 2.0.1
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/Readme.md +0 -1
- package/dist/globals.css +563 -8
- package/dist/src/components/index.d.ts +4 -0
- package/dist/src/components/index.js +5 -0
- package/dist/src/components/login/loginPage.js +5 -6
- package/dist/src/components/logo/logo.d.ts +5 -1
- package/dist/src/components/logo/logo.js +2 -3
- package/dist/src/components/logo/logoSmall.js +2 -2
- package/dist/src/components/navbar/navbar.d.ts +10 -0
- package/dist/src/components/navbar/navbar.js +36 -0
- package/dist/src/components/navbar/navbarDropdown.d.ts +6 -0
- package/dist/src/components/navbar/navbarDropdown.js +21 -0
- package/dist/src/components/navbar/navbarItem.d.ts +11 -0
- package/dist/src/components/navbar/navbarItem.js +12 -0
- package/dist/src/components/toggle/theme.d.ts +1 -1
- package/dist/src/components/toggle/theme.js +1 -1
- package/dist/src/components/version/version.d.ts +7 -0
- package/dist/src/components/version/version.js +12 -0
- package/dist/src/scripts/rewriteAlias.js +0 -20
- package/package.json +8 -6
- package/src/components/index.ts +6 -0
- package/src/components/login/loginPage.tsx +8 -14
- package/src/components/logo/logo.tsx +6 -2
- package/src/components/logo/logoSmall.tsx +2 -2
- package/src/components/navbar/navbar.tsx +130 -0
- package/src/components/navbar/navbarDropdown.tsx +77 -0
- package/src/components/navbar/navbarItem.tsx +47 -0
- package/src/components/toggle/theme.tsx +1 -1
- package/src/components/version/version.tsx +34 -0
- package/src/globals.css +37 -0
- package/src/scripts/rewriteAlias.ts +0 -22
- package/src/utils/cookies/cookies.ts +12 -7
- package/tsconfig.json +0 -3
- package/dist/images/logo-tekst-white.svg +0 -171
- package/dist/src/types/svg.d.ts +0 -4
- package/dist/src/types/svg.js +0 -1
- package/images/logo-tekst-white.svg +0 -171
- package/src/types/svg.ts +0 -4
package/Readme.md
CHANGED
|
@@ -23,7 +23,6 @@ npm run build
|
|
|
23
23
|
│ ├── types/ # TypeScript type definitions
|
|
24
24
|
│ ├── utils/ # Utility functions
|
|
25
25
|
│ └── globals.css # Global styles
|
|
26
|
-
├── images/ # Project images and SVGs
|
|
27
26
|
├── package.json # Project metadata and scripts
|
|
28
27
|
├── tailwind.config.ts # Tailwind CSS configuration
|
|
29
28
|
├── tsconfig.json # TypeScript configuration
|