Skip to content

Commit

Permalink
Release 1.1.263
Browse files Browse the repository at this point in the history
  • Loading branch information
fluentCI committed Oct 28, 2024
1 parent 26060e0 commit e75a2fc
Show file tree
Hide file tree
Showing 56 changed files with 7,578 additions and 7,268 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repositories {
Include the following dependency in your project's `build.gradle`:

```groovy
implementation 'com.microsoft.design:fluent-system-icons:1.1.262@aar'
implementation 'com.microsoft.design:fluent-system-icons:1.1.263@aar'
```

For library docs, see [android/README.md](android/README.md).
Expand All @@ -48,13 +48,13 @@ For library docs, see [android/README.md](android/README.md).
```ruby
use_frameworks!

pod "FluentIcons", "1.1.262"
pod "FluentIcons", "1.1.263"
```

#### Carthage

```bash
git "[email protected]:microsoft/fluentui-system-icons.git" "1.1.262"
git "[email protected]:microsoft/fluentui-system-icons.git" "1.1.263"
```

For library docs, see [ios/README.md](ios/README.md).
Expand All @@ -66,7 +66,7 @@ In the `pubspec.yaml` of your flutter project, add the following dependency:
```yaml
dependencies:
...
fluentui_system_icons: ^1.1.262
fluentui_system_icons: ^1.1.263
```
For library docs, see [flutter/README.md](flutter/README.md).
Expand Down
2 changes: 1 addition & 1 deletion flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
## [1.1.262] - Complete change log present here https://github.com/microsoft/fluentui-system-icons/tags
## [1.1.263] - Complete change log present here https://github.com/microsoft/fluentui-system-icons/tags
12 changes: 12 additions & 0 deletions flutter/example/lib/sample_icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5820,6 +5820,12 @@ final icons = <FluentUISampleIcon>[

FluentUISampleIcon(FluentIcons.document_one_page_multiple_24_regular, 'document_one_page_multiple_24_regular', 24),

FluentUISampleIcon(FluentIcons.document_one_page_multiple_sparkle_16_regular, 'document_one_page_multiple_sparkle_16_regular', 16),

FluentUISampleIcon(FluentIcons.document_one_page_multiple_sparkle_20_regular, 'document_one_page_multiple_sparkle_20_regular', 20),

FluentUISampleIcon(FluentIcons.document_one_page_multiple_sparkle_24_regular, 'document_one_page_multiple_sparkle_24_regular', 24),

FluentUISampleIcon(FluentIcons.document_one_page_sparkle_16_regular, 'document_one_page_sparkle_16_regular', 16),

FluentUISampleIcon(FluentIcons.document_one_page_sparkle_20_regular, 'document_one_page_sparkle_20_regular', 20),
Expand Down Expand Up @@ -22442,6 +22448,12 @@ final icons = <FluentUISampleIcon>[

FluentUISampleIcon(FluentIcons.document_one_page_multiple_24_filled, 'document_one_page_multiple_24_filled', 24),

FluentUISampleIcon(FluentIcons.document_one_page_multiple_sparkle_16_filled, 'document_one_page_multiple_sparkle_16_filled', 16),

FluentUISampleIcon(FluentIcons.document_one_page_multiple_sparkle_20_filled, 'document_one_page_multiple_sparkle_20_filled', 20),

FluentUISampleIcon(FluentIcons.document_one_page_multiple_sparkle_24_filled, 'document_one_page_multiple_sparkle_24_filled', 24),

FluentUISampleIcon(FluentIcons.document_one_page_sparkle_16_filled, 'document_one_page_sparkle_16_filled', 16),

FluentUISampleIcon(FluentIcons.document_one_page_sparkle_20_filled, 'document_one_page_sparkle_20_filled', 20),
Expand Down
Binary file modified flutter/lib/fonts/FluentSystemIcons-Filled.ttf
Binary file not shown.
Binary file modified flutter/lib/fonts/FluentSystemIcons-Regular.ttf
Binary file not shown.
Binary file modified flutter/lib/fonts/FluentSystemIcons-Resizable.ttf
Binary file not shown.
18 changes: 18 additions & 0 deletions flutter/lib/src/fluent_icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8733,6 +8733,15 @@ class FluentIcons {
/// fluent icon named "document_one_page_multiple" in size 24 and regular style.
static const IconData document_one_page_multiple_24_regular = IconData(983420, fontFamily: 'FluentSystemIcons-Regular', fontPackage: _kFontPkg);

/// fluent icon named "document_one_page_multiple_sparkle" in size 16 and regular style.
static const IconData document_one_page_multiple_sparkle_16_regular = IconData(984959, fontFamily: 'FluentSystemIcons-Regular', fontPackage: _kFontPkg);

/// fluent icon named "document_one_page_multiple_sparkle" in size 20 and regular style.
static const IconData document_one_page_multiple_sparkle_20_regular = IconData(984960, fontFamily: 'FluentSystemIcons-Regular', fontPackage: _kFontPkg);

/// fluent icon named "document_one_page_multiple_sparkle" in size 24 and regular style.
static const IconData document_one_page_multiple_sparkle_24_regular = IconData(984961, fontFamily: 'FluentSystemIcons-Regular', fontPackage: _kFontPkg);

/// fluent icon named "document_one_page_sparkle" in size 16 and regular style.
static const IconData document_one_page_sparkle_16_regular = IconData(983255, fontFamily: 'FluentSystemIcons-Regular', fontPackage: _kFontPkg);

Expand Down Expand Up @@ -33668,6 +33677,15 @@ class FluentIcons {
/// fluent icon named "document_one_page_multiple" in size 24 and filled style.
static const IconData document_one_page_multiple_24_filled = IconData(983420, fontFamily: 'FluentSystemIcons-Filled', fontPackage: _kFontPkg);

/// fluent icon named "document_one_page_multiple_sparkle" in size 16 and filled style.
static const IconData document_one_page_multiple_sparkle_16_filled = IconData(985084, fontFamily: 'FluentSystemIcons-Filled', fontPackage: _kFontPkg);

/// fluent icon named "document_one_page_multiple_sparkle" in size 20 and filled style.
static const IconData document_one_page_multiple_sparkle_20_filled = IconData(985085, fontFamily: 'FluentSystemIcons-Filled', fontPackage: _kFontPkg);

/// fluent icon named "document_one_page_multiple_sparkle" in size 24 and filled style.
static const IconData document_one_page_multiple_sparkle_24_filled = IconData(985086, fontFamily: 'FluentSystemIcons-Filled', fontPackage: _kFontPkg);

/// fluent icon named "document_one_page_sparkle" in size 16 and filled style.
static const IconData document_one_page_sparkle_16_filled = IconData(983254, fontFamily: 'FluentSystemIcons-Filled', fontPackage: _kFontPkg);

Expand Down
2 changes: 1 addition & 1 deletion flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fluentui_system_icons
description: Fluent UI System Icons are a collection of familiar, friendly and modern icons from Microsoft.
version: 1.1.262
version: 1.1.263
homepage: https://github.com/microsoft/fluentui-system-icons/tree/main

environment:
Expand Down
15 changes: 12 additions & 3 deletions fonts/FluentSystemIcons-Filled.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@font-face {
font-family: "FluentSystemIcons-Filled";
src: url("./FluentSystemIcons-Filled.woff2?2ad74e6b348ed99f796d2872a82fe1bb") format("woff2"),
url("./FluentSystemIcons-Filled.woff?2ad74e6b348ed99f796d2872a82fe1bb") format("woff"),
url("./FluentSystemIcons-Filled.ttf?2ad74e6b348ed99f796d2872a82fe1bb") format("truetype");
src: url("./FluentSystemIcons-Filled.woff2?3d1f399b415136d38a2eb0b86c43584e") format("woff2"),
url("./FluentSystemIcons-Filled.woff?3d1f399b415136d38a2eb0b86c43584e") format("woff"),
url("./FluentSystemIcons-Filled.ttf?3d1f399b415136d38a2eb0b86c43584e") format("truetype");
}

i[class^="icon-"]:before, i[class*=" icon-"]:before {
Expand Down Expand Up @@ -25348,3 +25348,12 @@ i[class^="icon-"]:before, i[class*=" icon-"]:before {
.icon-ic_fluent_textbox_checkmark_48_filled:before {
content: "\f07fb";
}
.icon-ic_fluent_document_one_page_multiple_sparkle_16_filled:before {
content: "\f07fc";
}
.icon-ic_fluent_document_one_page_multiple_sparkle_20_filled:before {
content: "\f07fd";
}
.icon-ic_fluent_document_one_page_multiple_sparkle_24_filled:before {
content: "\f07fe";
}
27 changes: 27 additions & 0 deletions fonts/FluentSystemIcons-Filled.html
Original file line number Diff line number Diff line change
Expand Up @@ -26129,6 +26129,33 @@ <h1>FluentSystemIcons-Filled</h1>
</div>


<div class="preview">
<span class="inner">
<i class="icon icon-ic_fluent_document_one_page_multiple_sparkle_16_filled"></i>
</span>
<br>
<span class='label'>ic_fluent_document_one_page_multiple_sparkle_16_filled</span>
</div>


<div class="preview">
<span class="inner">
<i class="icon icon-ic_fluent_document_one_page_multiple_sparkle_20_filled"></i>
</span>
<br>
<span class='label'>ic_fluent_document_one_page_multiple_sparkle_20_filled</span>
</div>


<div class="preview">
<span class="inner">
<i class="icon icon-ic_fluent_document_one_page_multiple_sparkle_24_filled"></i>
</span>
<br>
<span class='label'>ic_fluent_document_one_page_multiple_sparkle_24_filled</span>
</div>


<div class="preview">
<span class="inner">
<i class="icon icon-ic_fluent_document_one_page_sparkle_16_filled"></i>
Expand Down
5 changes: 4 additions & 1 deletion fonts/FluentSystemIcons-Filled.json
Original file line number Diff line number Diff line change
Expand Up @@ -8442,5 +8442,8 @@
"ic_fluent_textbox_checkmark_24_filled": 985080,
"ic_fluent_textbox_checkmark_28_filled": 985081,
"ic_fluent_textbox_checkmark_32_filled": 985082,
"ic_fluent_textbox_checkmark_48_filled": 985083
"ic_fluent_textbox_checkmark_48_filled": 985083,
"ic_fluent_document_one_page_multiple_sparkle_16_filled": 985084,
"ic_fluent_document_one_page_multiple_sparkle_20_filled": 985085,
"ic_fluent_document_one_page_multiple_sparkle_24_filled": 985086
}
Binary file modified fonts/FluentSystemIcons-Filled.ttf
Binary file not shown.
Binary file modified fonts/FluentSystemIcons-Filled.woff
Binary file not shown.
Binary file modified fonts/FluentSystemIcons-Filled.woff2
Binary file not shown.
15 changes: 12 additions & 3 deletions fonts/FluentSystemIcons-Regular.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@font-face {
font-family: "FluentSystemIcons-Regular";
src: url("./FluentSystemIcons-Regular.woff2?3825048b1630325abdf8dfa89a9be7b7") format("woff2"),
url("./FluentSystemIcons-Regular.woff?3825048b1630325abdf8dfa89a9be7b7") format("woff"),
url("./FluentSystemIcons-Regular.ttf?3825048b1630325abdf8dfa89a9be7b7") format("truetype");
src: url("./FluentSystemIcons-Regular.woff2?0a615f06ccc87df2f6544fce66ac197d") format("woff2"),
url("./FluentSystemIcons-Regular.woff?0a615f06ccc87df2f6544fce66ac197d") format("woff"),
url("./FluentSystemIcons-Regular.ttf?0a615f06ccc87df2f6544fce66ac197d") format("truetype");
}

i[class^="icon-"]:before, i[class*=" icon-"]:before {
Expand Down Expand Up @@ -24973,3 +24973,12 @@ i[class^="icon-"]:before, i[class*=" icon-"]:before {
.icon-ic_fluent_textbox_checkmark_48_regular:before {
content: "\f077e";
}
.icon-ic_fluent_document_one_page_multiple_sparkle_16_regular:before {
content: "\f077f";
}
.icon-ic_fluent_document_one_page_multiple_sparkle_20_regular:before {
content: "\f0780";
}
.icon-ic_fluent_document_one_page_multiple_sparkle_24_regular:before {
content: "\f0781";
}
27 changes: 27 additions & 0 deletions fonts/FluentSystemIcons-Regular.html
Original file line number Diff line number Diff line change
Expand Up @@ -26201,6 +26201,33 @@ <h1>FluentSystemIcons-Regular</h1>
</div>


<div class="preview">
<span class="inner">
<i class="icon icon-ic_fluent_document_one_page_multiple_sparkle_16_regular"></i>
</span>
<br>
<span class='label'>ic_fluent_document_one_page_multiple_sparkle_16_regular</span>
</div>


<div class="preview">
<span class="inner">
<i class="icon icon-ic_fluent_document_one_page_multiple_sparkle_20_regular"></i>
</span>
<br>
<span class='label'>ic_fluent_document_one_page_multiple_sparkle_20_regular</span>
</div>


<div class="preview">
<span class="inner">
<i class="icon icon-ic_fluent_document_one_page_multiple_sparkle_24_regular"></i>
</span>
<br>
<span class='label'>ic_fluent_document_one_page_multiple_sparkle_24_regular</span>
</div>


<div class="preview">
<span class="inner">
<i class="icon icon-ic_fluent_document_one_page_sparkle_16_regular"></i>
Expand Down
5 changes: 4 additions & 1 deletion fonts/FluentSystemIcons-Regular.json
Original file line number Diff line number Diff line change
Expand Up @@ -8317,5 +8317,8 @@
"ic_fluent_textbox_checkmark_24_regular": 984955,
"ic_fluent_textbox_checkmark_28_regular": 984956,
"ic_fluent_textbox_checkmark_32_regular": 984957,
"ic_fluent_textbox_checkmark_48_regular": 984958
"ic_fluent_textbox_checkmark_48_regular": 984958,
"ic_fluent_document_one_page_multiple_sparkle_16_regular": 984959,
"ic_fluent_document_one_page_multiple_sparkle_20_regular": 984960,
"ic_fluent_document_one_page_multiple_sparkle_24_regular": 984961
}
Binary file modified fonts/FluentSystemIcons-Regular.ttf
Binary file not shown.
Binary file modified fonts/FluentSystemIcons-Regular.woff
Binary file not shown.
Binary file modified fonts/FluentSystemIcons-Regular.woff2
Binary file not shown.
Loading

0 comments on commit e75a2fc

Please sign in to comment.