@hashtagcms/admin-ui-kit 1.0.6 → 1.0.7
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 +9 -9
- package/dist/admin-ui-kit.min.css +1 -1
- package/dist/admin-ui-kit.min.js +1 -1
- package/dist/admin-ui-kit.min.js.LICENSE.txt +5 -1
- package/package.json +5 -5
- package/packages/components/README.md +1 -1
- package/packages/components/package.json +2 -2
- package/packages/components/src/file-uploader.vue +2 -2
- package/packages/components/src/homepage.vue +2 -2
- package/packages/components/src/index.js +149 -50
- package/packages/components/src/left-nav.vue +1 -1
- package/packages/components/src/menu-sorter.vue +2 -2
- package/packages/components/src/module-permission.vue +1 -1
- package/packages/components/src/site-cloner.vue +1 -1
- package/packages/components/src/sitewise-copier.vue +8 -8
- package/packages/components/src/sitewise-data.vue +2 -2
- package/packages/components/src/sorter.vue +2 -2
- package/packages/helpers/README.md +1 -1
- package/packages/helpers/package.json +2 -2
- package/packages/helpers/src/common.js +6 -2
- package/packages/styles/README.md +2 -2
- package/packages/styles/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# HashtagCms Admin UI Kit
|
|
2
2
|
|
|
3
|
-
Welcome to the official **
|
|
3
|
+
Welcome to the official **HashtagCms Admin UI Kit** monorepo. This repository houses the core modular logic, UI components, and utility libraries that power the HashtagCms ecosystem.
|
|
4
4
|
|
|
5
5
|
## 📦 Package
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ Everything is bundled into a single NPM package for easier consumption.
|
|
|
8
8
|
|
|
9
9
|
| Package | Description | Version |
|
|
10
10
|
| :------------------------------------------ | :---------------------------------------------------------- | :------ |
|
|
11
|
-
| **[`@hashtagcms/admin-ui-kit`](./packages)** | Unified Library containing Components, Helpers, and Styles. | `1.0.
|
|
11
|
+
| **[`@hashtagcms/admin-ui-kit`](./packages)** | Unified Library containing Components, Helpers, and Styles. | `1.0.7` |
|
|
12
12
|
|
|
13
13
|
_Note: The internals are still modular (`packages/components`, `packages/helpers`), but consumers should import from the main package._
|
|
14
14
|
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
// Bootstrap (if needed by your local overrides, otherwise package might include it or expect it)
|
|
43
43
|
@import "~bootstrap/scss/bootstrap";
|
|
44
44
|
|
|
45
|
-
// Import
|
|
45
|
+
// Import HashtagCms Admin UI Kit Styles (Source)
|
|
46
46
|
// Note: Requires Sass loader configuration
|
|
47
47
|
@import "~@hashtagcms/styles/src/app";
|
|
48
48
|
|
|
@@ -56,10 +56,10 @@ import {
|
|
|
56
56
|
|
|
57
57
|
Detailed guides for every part of the library:
|
|
58
58
|
|
|
59
|
-
- [**
|
|
60
|
-
- [**Components Guide**](./docs/
|
|
61
|
-
- [**Helpers Guide**](./docs/
|
|
62
|
-
- [**
|
|
59
|
+
- [**Getting Started**](./docs/01-getting-started.md): Installation, setup and usage.
|
|
60
|
+
- [**Components Guide**](./docs/02-components.md): Component API and examples.
|
|
61
|
+
- [**Helpers Guide**](./docs/03-helpers.md): Utilities and helpers documentation.
|
|
62
|
+
- [**API Reference**](./docs/04-api-reference.md): Technical overview of exports and architecture.
|
|
63
63
|
|
|
64
64
|
## 🛠️ Development
|
|
65
65
|
|
|
@@ -80,4 +80,4 @@ This project is licensed under the [MIT License](LICENSE).
|
|
|
80
80
|
|
|
81
81
|
---
|
|
82
82
|
|
|
83
|
-
_Built with ❤️ by [
|
|
83
|
+
_Built with ❤️ by [HashtagCms](https://github.com/hashtagcms)._
|