-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feature-7.3.0' into icon-binocs
- Loading branch information
Showing
3 changed files
with
124 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,5 +74,6 @@ | |
"license": "MIT", | ||
"sideEffects": [ | ||
"icons/imports/" | ||
] | ||
], | ||
"web-types": "dist/ionic.web-types.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/web-types", | ||
"name": "ionicons", | ||
"version": "0.0.0", | ||
"description-markup": "markdown", | ||
"contributions": { | ||
"html": { | ||
"elements": [ | ||
{ | ||
"name": "ion-icon", | ||
"description": "The Ionicons Web Component is an easy and performant way to use Ionicons in your app. The component will dynamically load an SVG for each icon, so your app is only requesting the icons that you need.", | ||
"doc-url": "https://ionic.io/ionicons/usage", | ||
"attributes": [ | ||
{ | ||
"name": "name", | ||
"description": "The name of the built-in icon from the Ionicons package.", | ||
"priority": "high", | ||
"doc-url": "https://ionic.io/ionicons/usage#basic-usage", | ||
"value": { | ||
"type": "symbol" | ||
}, | ||
"values": [ | ||
{ | ||
"name": "The ion-icon", | ||
"pattern": { | ||
"items": "ionicons" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "src", | ||
"priority": "high", | ||
"description": "Provide url of a custom SVG icon. The `src` attribute works the same as `<img src=\"...\">` in that the url must be accessible from the webpage that's making a request for the image. Additionally, the external file can only be a valid `svg` and does not allow scripts or events within the `svg` element.", | ||
"doc-url": "https://ionic.io/ionicons/usage#basic-usage" | ||
}, | ||
{ | ||
"name": "md", | ||
"description": "Provide icon variant specific to MD platform", | ||
"priority": "high", | ||
"doc-url": "https://ionic.io/ionicons/usage#basic-usage", | ||
"value": { | ||
"type": "symbol" | ||
}, | ||
"values": [ | ||
{ | ||
"name": "The ion-icon", | ||
"pattern": { | ||
"items": "ionicons" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "ios", | ||
"description": "Provide icon variant specific to iOS platform", | ||
"priority": "high", | ||
"doc-url": "https://ionic.io/ionicons/usage#basic-usage", | ||
"value": { | ||
"type": "symbol" | ||
}, | ||
"values": [ | ||
{ | ||
"name": "The ion-icon", | ||
"pattern": { | ||
"items": "ionicons" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "size", | ||
"description": "Specify the icon size using one of the pre-defined font sizes.\n\nAlternatively you can set a specific size by applying the `font-size` CSS property on the `ion-icon` component. It's recommended to use pixel sizes that are a multiple of 8 (8, 16, 32, 64, etc.)", | ||
"doc-url": "https://ionic.io/ionicons/usage#basic-usage", | ||
"priority": "high", | ||
"value": { | ||
"type": "enum" | ||
}, | ||
"values": [ | ||
{ | ||
"name": "small" | ||
}, | ||
{ | ||
"name": "large" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"ionicons": [ | ||
] | ||
} | ||
} | ||
} |