@gitlab/ui 114.3.0 → 114.7.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 +4 -2
- package/bin/migrate_custom_utils_to_tw.bundled.mjs +398 -401
- package/dist/components/base/link/link.js +6 -5
- package/dist/components/base/sorting/sorting.js +10 -1
- package/dist/components/base/table/constants.js +1 -1
- package/dist/components/base/toast/toast.js +1 -1
- package/dist/components/base/toggle/toggle.js +0 -1
- package/dist/config.js +1 -1
- package/dist/directives/safe_link/mock_data.js +1 -1
- package/dist/directives/safe_link/safe_link.js +1 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/utils/is_slot_empty.js +0 -2
- package/dist/utils/number_utils.js +3 -3
- package/dist/utils/use_mock_intersection_observer.js +0 -4
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +1 -1
- package/package.json +9 -6
- package/src/components/base/button/button.md +1 -1
- package/src/components/base/drawer/drawer.scss +2 -1
- package/src/components/base/form/form_character_count/form_character_count.md +1 -1
- package/src/components/base/form/form_combobox/form_combobox.md +4 -4
- package/src/components/base/link/link.md +34 -1
- package/src/components/base/link/link.scss +1 -1
- package/src/components/base/link/link.vue +6 -4
- package/src/components/base/sorting/sorting.vue +11 -0
- package/src/components/base/table/constants.js +1 -1
- package/src/components/base/toast/toast.js +1 -1
- package/src/components/base/toggle/toggle.vue +2 -3
- package/src/components/charts/heatmap/heatmap.md +1 -1
- package/src/config.js +1 -1
- package/src/directives/safe_link/mock_data.js +1 -1
- package/src/directives/safe_link/safe_link.js +1 -1
- package/src/utils/is_slot_empty.js +0 -1
- package/src/utils/number_utils.js +3 -3
- package/src/utils/use_mock_intersection_observer.js +1 -3
- package/src/vendor/bootstrap-vue/src/components/table/_table.scss +2 -4
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +1 -1
- package/translations.js +1 -0
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ design system. GitLab UI is written in [Vue.js](https://vuejs.org) and its objec
|
|
|
6
6
|
- Create reusable UI components to accelerate frontend development.
|
|
7
7
|
- Create UI consistency for all components within GitLab.
|
|
8
8
|
|
|
9
|
-
See <https://
|
|
9
|
+
See <https://design.gitlab.com/storybook> for documentation.
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
@@ -53,7 +53,7 @@ or newer.
|
|
|
53
53
|
|
|
54
54
|
```sh
|
|
55
55
|
# Clone the project
|
|
56
|
-
git clone git@gitlab.com:gitlab-org/gitlab-
|
|
56
|
+
git clone git@gitlab.com:gitlab-org/gitlab-services/design.gitlab.com.git
|
|
57
57
|
|
|
58
58
|
# Navigate to the root of the project
|
|
59
59
|
cd gitlab-ui
|
|
@@ -128,6 +128,8 @@ can be formatted for different uses. Read more on this in the [design tokens doc
|
|
|
128
128
|
See [Updating GitLab UI Packages](doc/updating-gitlab-ui-packages.md) for information on how the
|
|
129
129
|
`@gitlab/ui` package is kept up to date in various projects.
|
|
130
130
|
|
|
131
|
+
To publish new versions of GitLab UI, see [publishing packages](../../doc/publishing-packages.md).
|
|
132
|
+
|
|
131
133
|
## Contributing guide
|
|
132
134
|
|
|
133
135
|
Please refer to [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to add new components and
|