Skip to content

Commit

Permalink
Merge branch 'main' into studio/clock-alert
Browse files Browse the repository at this point in the history
  • Loading branch information
jguddas authored Aug 24, 2024
2 parents 47c2078 + 0160bbe commit 2f50e7c
Show file tree
Hide file tree
Showing 44 changed files with 1,527 additions and 595 deletions.
1 change: 1 addition & 0 deletions docs/.vitepress/theme/components/home/TeamMemberCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ defineProps<TeamMember>()
font-weight: 500;
color: var(--vp-c-text-2);
text-align: center;
text-wrap: balance;
margin-bottom: 16px;;
}
Expand Down
21 changes: 21 additions & 0 deletions docs/guide/packages/lucide-angular.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,20 @@ import { LucideAngularModule, File, Home, Menu, UserCheck } from 'lucide-angular
export class AppModule { }
```

or using standalone version:

```js
import { LucideAngularModule, FileIcon } from 'lucide-angular';

@NgModule({
imports: [
LucideAngularModule
]
})
export class AppModule {
readonly FileIcon = FileIcon;
}
```
### Step 2: Use the icons in templates

Within your templates you may now use one of the following component tags to insert an icon:
Expand All @@ -47,6 +61,13 @@ Within your templates you may now use one of the following component tags to ins
<i-lucide name="menu" class="my-icon"></i-lucide>
<span-lucide name="user-check" class="my-icon"></span-lucide>
```
for standalone
```html
<lucide-angular [img]="FileIcon" class="my-icon"></lucide-angular>
<lucide-icon [img]="FileIcon" class="my-icon"></lucide-icon>
<i-lucide [img]="FileIcon" class="my-icon"></i-lucide>
<span-lucide [img]="FileIcon" class="my-icon"></span-lucide>
```

### Props

Expand Down
13 changes: 13 additions & 0 deletions docs/guide/packages/lucide-solid.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@ const App = () => {
export default App;
```

Vite loading/performing issues with the dev server can be resolved by import icons directly from the `lucide-solid/icons` directory:

```jsx
import Camera from 'lucide-solid/icons/camera';

// Usage
const App = () => {
return <Camera color="red" size={48} />;
};

export default App;
```

## Props

| name | type | default |
Expand Down
Binary file modified docs/images/grid-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
# https://vitepress.dev/reference/default-theme-home-page
layout: home
markdownStyles: false

head:
- - link
Expand Down
5 changes: 2 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,13 @@
"@types/semver": "^7.5.3",
"h3": "^1.8.0",
"nitropack": "2.8.1",
"node-fetch": "2",
"rollup-plugin-copy": "^3.4.0",
"vitepress": "1.0.0-rc.36"
"vitepress": "^1.3.1"
},
"dependencies": {
"@floating-ui/vue": "^1.0.3",
"@headlessui/vue": "^1.7.17",
"@resvg/resvg-wasm": "^2.4.1",
"@resvg/resvg-wasm": "^2.6.2",
"@vueuse/components": "^10.7.2",
"@vueuse/core": "^10.7.2",
"element-to-path": "^1.2.1",
Expand Down
17 changes: 17 additions & 0 deletions icons/chart-gantt.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"karsa-mistmere",
"danielbayley",
"jguddas"
],
"tags": [
"diagram",
"graph",
"timeline",
"planning"
],
"categories": [
"charts"
]
}
16 changes: 16 additions & 0 deletions icons/chart-gantt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion icons/contact-round.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"karsa-mistmere"
"karsa-mistmere",
"jguddas"
],
"tags": [
"user",
Expand Down
10 changes: 5 additions & 5 deletions icons/contact-round.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion icons/contact.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"lscheibel",
"karsa-mistmere",
"FPDK",
"ericfennis"
"ericfennis",
"jguddas"
],
"tags": [
"user",
Expand Down
10 changes: 5 additions & 5 deletions icons/contact.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions icons/file-volume.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion icons/folder-search.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"karsa-mistmere"
"karsa-mistmere",
"jguddas"
],
"tags": [
"directory",
Expand Down
4 changes: 2 additions & 2 deletions icons/folder-search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion icons/leafy-green.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"categories": [
"food-beverage",
"emoji"
"emoji",
"sustainability"
]
}
3 changes: 2 additions & 1 deletion icons/message-square-dashed.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"danielbayley"
"danielbayley",
"jguddas"
],
"tags": [
"comment",
Expand Down
17 changes: 9 additions & 8 deletions icons/message-square-dashed.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions icons/milestone.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"karsa-mistmere"
"karsa-mistmere",
"jguddas"
],
"tags": [
"signpost",
"direction",
"right",
"east",
"forward",
"version control"
"version control",
"waypoint"
],
"categories": [
"arrows",
Expand Down
2 changes: 1 addition & 1 deletion icons/milestone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion icons/signpost.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "../icon.schema.json",
"contributors": [
"danielbayley",
"jguddas"
"karsa-mistmere"
],
"tags": [
"bidirectional",
Expand Down
2 changes: 1 addition & 1 deletion icons/signpost.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion icons/sprout.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
],
"categories": [
"nature",
"gaming"
"gaming",
"sustainability"
]
}
6 changes: 4 additions & 2 deletions icons/stethoscope.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion icons/sun.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"categories": [
"accessibility",
"weather",
"seasons"
"seasons",
"sustainability"
]
}
24 changes: 24 additions & 0 deletions icons/tickets-plane.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"jguddas"
],
"tags": [
"plane",
"trip",
"airplane",
"flight",
"travel",
"fly",
"takeoff",
"vacation",
"passenger",
"pass",
"check-in",
"airport"
],
"categories": [
"transportation",
"travel"
]
}
19 changes: 19 additions & 0 deletions icons/tickets-plane.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion icons/tree-deciduous.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"nature"
],
"categories": [
"nature"
"nature",
"sustainability"
]
}
3 changes: 2 additions & 1 deletion icons/tree-palm.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"island"
],
"categories": [
"nature"
"nature",
"sustainability"
],
"aliases": [
"palmtree"
Expand Down
3 changes: 2 additions & 1 deletion icons/tree-pine.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"nature"
],
"categories": [
"nature"
"nature",
"sustainability"
]
}
3 changes: 2 additions & 1 deletion icons/trees.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"nature"
],
"categories": [
"nature"
"nature",
"sustainability"
]
}
Loading

0 comments on commit 2f50e7c

Please sign in to comment.