Skip to content

Commit

Permalink
refactor emoji service; set emoji variant as fluent-emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpchen committed Jun 11, 2024
1 parent 2f436f9 commit d51c283
Show file tree
Hide file tree
Showing 12,641 changed files with 1,569,399 additions and 20 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
400 changes: 400 additions & 0 deletions docs/.vitepress/config.mts.timestamp-1718030263517-61c2754b11ee.mjs

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions docs/data/Features.data.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import Enumerable from 'linq';
import { type Feature } from 'vitepress/dist/client/theme-default/components/VPFeatures.vue';
import { featureService } from '../services/FeatureService';

const featuresItems: Feature[] = featureService.getFeatures();
const featuresItems: Feature[] = Enumerable.from(featureService.getFeatures())
.orderBy(_x => Math.random())
.toArray();
const articleFeature: Feature[] = featureService.getArticleFeature();
const loader = {
load: (): FeatureCompose => ({ features: featuresItems, articleFeature: articleFeature }),
Expand Down
3 changes: 3 additions & 0 deletions docs/document/Concepts/docs/SemVer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# [SemVer(Semantic Versioning)](https://semver.org/)

##
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ import VPFeatures, { type Feature } from 'vitepress/dist/client/theme-default/co
import VPHero from 'vitepress/dist/client/theme-default/components/VPHero.vue';
import { ref } from 'vue';
import { data } from './data/Features.data';
const features: Feature[] = Enumerable.from(data.features).orderBy(_x => Math.random()).toArray();
const features: Feature[] = data.features;
const articleFeature = ref(data.articleFeature);
</script>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d51c283

Please sign in to comment.