diff --git a/src/Squidex.Read.MongoDb/Contents/MongoContentRepository.cs b/src/Squidex.Read.MongoDb/Contents/MongoContentRepository.cs index 341fb3695..99bcb9223 100644 --- a/src/Squidex.Read.MongoDb/Contents/MongoContentRepository.cs +++ b/src/Squidex.Read.MongoDb/Contents/MongoContentRepository.cs @@ -142,7 +142,7 @@ namespace Squidex.Read.MongoDb.Contents { var collection = GetCollection(schemaId); - var schemaEntity = await schemas.FindSchemaByIdAsync(schemaId); + var schemaEntity = await schemas.FindSchemaByIdAsync(schemaId, true); if (schemaEntity == null) { diff --git a/src/Squidex.Read.MongoDb/Schemas/MongoSchemaEntity.cs b/src/Squidex.Read.MongoDb/Schemas/MongoSchemaEntity.cs index a76e2ae6e..8e34fb03c 100644 --- a/src/Squidex.Read.MongoDb/Schemas/MongoSchemaEntity.cs +++ b/src/Squidex.Read.MongoDb/Schemas/MongoSchemaEntity.cs @@ -53,6 +53,10 @@ namespace Squidex.Read.MongoDb.Schemas [BsonElement] public bool IsPublished { get; set; } + [BsonRequired] + [BsonElement] + public bool IsDeleted { get; set; } + Schema ISchemaEntityWithSchema.Schema { get { return schema.Value; } diff --git a/src/Squidex.Read.MongoDb/Schemas/MongoSchemaRepository.cs b/src/Squidex.Read.MongoDb/Schemas/MongoSchemaRepository.cs index 58db8d1dc..c3767a308 100644 --- a/src/Squidex.Read.MongoDb/Schemas/MongoSchemaRepository.cs +++ b/src/Squidex.Read.MongoDb/Schemas/MongoSchemaRepository.cs @@ -49,14 +49,14 @@ namespace Squidex.Read.MongoDb.Schemas public async Task> QueryAllAsync(Guid appId) { - var entities = await Collection.Find(s => s.AppId == appId).ToListAsync(); + var entities = await Collection.Find(s => s.AppId == appId && !s.IsDeleted).ToListAsync(); return entities.OfType().ToList(); } public async Task> QueryAllWithSchemaAsync(Guid appId) { - var entities = await Collection.Find(s => s.AppId == appId).ToListAsync(); + var entities = await Collection.Find(s => s.AppId == appId && !s.IsDeleted).ToListAsync(); entities.ForEach(x => x.DeserializeSchema(serializer)); @@ -66,7 +66,7 @@ namespace Squidex.Read.MongoDb.Schemas public async Task FindSchemaAsync(Guid appId, string name) { var entity = - await Collection.Find(s => s.Name == name && s.AppId == appId) + await Collection.Find(s => s.Name == name && s.AppId == appId && !s.IsDeleted) .FirstOrDefaultAsync(); entity?.DeserializeSchema(serializer); @@ -84,14 +84,5 @@ namespace Squidex.Read.MongoDb.Schemas return entity; } - - public async Task FindSchemaIdAsync(Guid appId, string name) - { - var entity = - await Collection.Find(s => s.Name == name & s.AppId == appId) - .Project(Projection.Include(x => x.Id)).FirstOrDefaultAsync(); - - return entity?.Id; - } } } diff --git a/src/Squidex.Read.MongoDb/Schemas/MongoSchemaRepository_EventHandling.cs b/src/Squidex.Read.MongoDb/Schemas/MongoSchemaRepository_EventHandling.cs index 11fc3cc95..f0a94b350 100644 --- a/src/Squidex.Read.MongoDb/Schemas/MongoSchemaRepository_EventHandling.cs +++ b/src/Squidex.Read.MongoDb/Schemas/MongoSchemaRepository_EventHandling.cs @@ -91,7 +91,7 @@ namespace Squidex.Read.MongoDb.Schemas protected async Task On(SchemaDeleted @event, EnvelopeHeaders headers) { - await Collection.DeleteOneAsync(x => x.Id == headers.AggregateId()); + await Collection.UpdateAsync(@event, headers, e => e.IsDeleted = true); SchemaSaved?.Invoke(@event.AppId, @event.SchemaId); } diff --git a/src/Squidex.Read/Schemas/ISchemaEntity.cs b/src/Squidex.Read/Schemas/ISchemaEntity.cs index 5d01a6f54..d8ae691da 100644 --- a/src/Squidex.Read/Schemas/ISchemaEntity.cs +++ b/src/Squidex.Read/Schemas/ISchemaEntity.cs @@ -15,5 +15,7 @@ namespace Squidex.Read.Schemas string Label { get; } bool IsPublished { get; } + + bool IsDeleted { get; } } } diff --git a/src/Squidex.Read/Schemas/Repositories/ISchemaRepository.cs b/src/Squidex.Read/Schemas/Repositories/ISchemaRepository.cs index ddb4c743e..d540c343c 100644 --- a/src/Squidex.Read/Schemas/Repositories/ISchemaRepository.cs +++ b/src/Squidex.Read/Schemas/Repositories/ISchemaRepository.cs @@ -24,7 +24,5 @@ namespace Squidex.Read.Schemas.Repositories Task FindSchemaAsync(Guid appId, string name); Task FindSchemaAsync(Guid schemaId); - - Task FindSchemaIdAsync(Guid appId, string name); } } diff --git a/src/Squidex.Read/Schemas/Services/ISchemaProvider.cs b/src/Squidex.Read/Schemas/Services/ISchemaProvider.cs index 02dfcf03b..73b8a1df8 100644 --- a/src/Squidex.Read/Schemas/Services/ISchemaProvider.cs +++ b/src/Squidex.Read/Schemas/Services/ISchemaProvider.cs @@ -14,7 +14,7 @@ namespace Squidex.Read.Schemas.Services { public interface ISchemaProvider { - Task FindSchemaByIdAsync(Guid id); + Task FindSchemaByIdAsync(Guid id, bool provideDeleted = false); Task FindSchemaByNameAsync(Guid appId, string name); diff --git a/src/Squidex.Read/Schemas/Services/Implementations/CachingSchemaProvider.cs b/src/Squidex.Read/Schemas/Services/Implementations/CachingSchemaProvider.cs index d3e857e52..1d600f32f 100644 --- a/src/Squidex.Read/Schemas/Services/Implementations/CachingSchemaProvider.cs +++ b/src/Squidex.Read/Schemas/Services/Implementations/CachingSchemaProvider.cs @@ -32,7 +32,7 @@ namespace Squidex.Read.Schemas.Services.Implementations this.repository = repository; } - public async Task FindSchemaByIdAsync(Guid id) + public async Task FindSchemaByIdAsync(Guid id, bool provideDeleted = false) { var cacheKey = BuildIdCacheKey(id); @@ -48,6 +48,11 @@ namespace Squidex.Read.Schemas.Services.Implementations } } + if (result != null && result.IsDeleted && !provideDeleted) + { + result = null; + } + return result; } @@ -69,6 +74,11 @@ namespace Squidex.Read.Schemas.Services.Implementations } } + if (result != null && result.IsDeleted) + { + result = null; + } + return result; } diff --git a/src/Squidex/Config/Domain/StoreMongoDbModule.cs b/src/Squidex/Config/Domain/StoreMongoDbModule.cs index 935416d55..5999a9215 100644 --- a/src/Squidex/Config/Domain/StoreMongoDbModule.cs +++ b/src/Squidex/Config/Domain/StoreMongoDbModule.cs @@ -32,7 +32,8 @@ namespace Squidex.Config.Domain { public class StoreMongoDbModule : Module { - private const string MongoDatabaseName = "string"; + private const string MongoDatabaseName = "MongoDatabaseName"; + private const string MongoDatabaseNameContent = "MongoDatabaseNameContent"; private IConfiguration Configuration { get; } @@ -57,13 +58,24 @@ namespace Squidex.Config.Domain throw new ConfigurationException("You must specify the MongoDB connection string in the 'squidex:stores:mongoDb:connectionString' configuration section."); } - builder.Register(c => + var databaseNameContent = Configuration.GetValue("squidex:stores:mongoDb:databaseNameContent"); + + if (string.IsNullOrWhiteSpace(databaseNameContent)) { - var mongoDbClient = new MongoClient(connectionString); - var mongoDatabase = mongoDbClient.GetDatabase(databaseName); + databaseNameContent = databaseName; + } + + builder.Register(c => new MongoClient(connectionString)) + .As() + .SingleInstance(); - return mongoDatabase; - }).Named(MongoDatabaseName).SingleInstance(); + builder.Register(c => c.Resolve().GetDatabase(databaseName)) + .Named(MongoDatabaseName) + .SingleInstance(); + + builder.Register(c => c.Resolve().GetDatabase(databaseNameContent)) + .Named(MongoDatabaseNameContent) + .SingleInstance(); builder.Register>(c => { @@ -100,7 +112,7 @@ namespace Squidex.Config.Domain .SingleInstance(); builder.RegisterType() - .WithParameter(ResolvedParameter.ForNamed(MongoDatabaseName)) + .WithParameter(ResolvedParameter.ForNamed(MongoDatabaseNameContent)) .As() .As() .AsSelf() diff --git a/src/Squidex/app/features/administration/pages/event-consumers/event-consumers-page.component.html b/src/Squidex/app/features/administration/pages/event-consumers/event-consumers-page.component.html index c321d2c11..a5ddd01f7 100644 --- a/src/Squidex/app/features/administration/pages/event-consumers/event-consumers-page.component.html +++ b/src/Squidex/app/features/administration/pages/event-consumers/event-consumers-page.component.html @@ -39,7 +39,7 @@ - + {{eventConsumer.name}} diff --git a/src/Squidex/app/theme/icomoon/demo-files/demo.css b/src/Squidex/app/theme/icomoon/demo-files/demo.css index b9fadeca3..5b17a4076 100644 --- a/src/Squidex/app/theme/icomoon/demo-files/demo.css +++ b/src/Squidex/app/theme/icomoon/demo-files/demo.css @@ -147,19 +147,19 @@ p { font-size: 16px; } .fs1 { - font-size: 20px; + font-size: 28px; } .fs2 { - font-size: 32px; + font-size: 20px; } .fs3 { font-size: 32px; } .fs4 { - font-size: 24px; + font-size: 32px; } .fs5 { - font-size: 32px; + font-size: 24px; } .fs6 { font-size: 32px; diff --git a/src/Squidex/app/theme/icomoon/demo.html b/src/Squidex/app/theme/icomoon/demo.html index b5fbe6757..74a8b71f5 100644 --- a/src/Squidex/app/theme/icomoon/demo.html +++ b/src/Squidex/app/theme/icomoon/demo.html @@ -9,103 +9,231 @@
-

Font Name: icomoon (Glyphs: 61)

+

Font Name: icomoon (Glyphs: 62)

-

Grid Size: 20

+

Grid Size: 14

- + - icon-info + icon-bug
- - + +
liga:
-
-
-

Grid Size: 16

-
+
- + - icon-google + icon-control-Markdown
- - + +
liga:
-
+
- + - icon-unlocked + icon-control-Date
- - + +
liga:
-
+
- + - icon-lock + icon-control-DateTime
- - + +
liga:
-
+
- + - icon-reset + icon-angle-right
- - + + +
+
+ liga: + +
+
+
+
+ + + + icon-user-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-right +
+
+ +
liga:
+
+
+ + + + icon-caret-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-left +
+
+ + +
+
+ liga: + +
+
+
+
+

Grid Size: 20

- + - icon-pause + icon-info
- - + +
liga: @@ -114,14 +242,14 @@
- + - icon-play + icon-unlocked
- - + +
liga: @@ -130,14 +258,14 @@
- + - icon-settings2 + icon-lock
- - + +
liga: @@ -146,84 +274,78 @@
- + - icon-bin2 + icon-reset
- - + +
liga:
-
-
-

Grid Size: 32

-
+
- + - icon-control-Stars + icon-pause
- - + +
liga:
-
+
- + - icon-browser + icon-play
- - + +
liga:
-
-
-

Grid Size: 24

-
+
- + - icon-control-RichText + icon-settings2
- - + +
liga:
-
+
- + - icon-control-Date + icon-bin2
- - + +
liga: @@ -232,177 +354,183 @@
-

Grid Size: 14

-
+

Grid Size: 16

+
- + - icon-control-Markdown + icon-google
- - + +
liga:
-
+
- + - icon-control-Date + icon-unlocked
- - + +
liga:
-
+
- + - icon-control-DateTime + icon-lock
- - + +
liga:
-
+
- + - icon-angle-right + icon-reset
- - + +
liga:
-
+
- + - icon-user-o + icon-pause
- - + +
liga:
-
+
- + - icon-caret-right + icon-play
- - + +
liga:
-
+
- + - icon-caret-left + icon-settings2
- - + +
liga:
-
+
- + - icon-caret-up + icon-bin2
- - + +
liga:
-
+
+
+

Grid Size: 32

+
- + - icon-caret-down + icon-control-Stars
- - + +
liga:
-
+
- + - icon-angle-up + icon-browser
- - + +
liga:
+
+
+

Grid Size: 24

- + - icon-angle-down + icon-control-RichText
- - + +
liga: @@ -411,14 +539,14 @@
- + - icon-angle-left + icon-control-Date
- - + +
liga: diff --git a/src/Squidex/app/theme/icomoon/fonts/icomoon.eot b/src/Squidex/app/theme/icomoon/fonts/icomoon.eot index 5a7fab9e1..8b55c3e10 100644 Binary files a/src/Squidex/app/theme/icomoon/fonts/icomoon.eot and b/src/Squidex/app/theme/icomoon/fonts/icomoon.eot differ diff --git a/src/Squidex/app/theme/icomoon/fonts/icomoon.svg b/src/Squidex/app/theme/icomoon/fonts/icomoon.svg index 18baff486..bedf0c72c 100644 --- a/src/Squidex/app/theme/icomoon/fonts/icomoon.svg +++ b/src/Squidex/app/theme/icomoon/fonts/icomoon.svg @@ -68,4 +68,5 @@ + \ No newline at end of file diff --git a/src/Squidex/app/theme/icomoon/fonts/icomoon.ttf b/src/Squidex/app/theme/icomoon/fonts/icomoon.ttf index 9454802ce..b64359315 100644 Binary files a/src/Squidex/app/theme/icomoon/fonts/icomoon.ttf and b/src/Squidex/app/theme/icomoon/fonts/icomoon.ttf differ diff --git a/src/Squidex/app/theme/icomoon/fonts/icomoon.woff b/src/Squidex/app/theme/icomoon/fonts/icomoon.woff index 1d0cf049d..0c72a003c 100644 Binary files a/src/Squidex/app/theme/icomoon/fonts/icomoon.woff and b/src/Squidex/app/theme/icomoon/fonts/icomoon.woff differ diff --git a/src/Squidex/app/theme/icomoon/selection.json b/src/Squidex/app/theme/icomoon/selection.json index b5e72df38..37d5af448 100644 --- a/src/Squidex/app/theme/icomoon/selection.json +++ b/src/Squidex/app/theme/icomoon/selection.json @@ -4,17 +4,18 @@ { "icon": { "paths": [ - "M636.518 0c68.608 0 102.912 46.694 102.912 100.198 0 66.816-59.597 128.614-137.165 128.614-64.973 0-102.861-38.4-101.069-101.888 0-53.402 45.107-126.925 135.322-126.925zM425.421 1024c-54.17 0-93.85-33.382-55.962-180.429l62.157-260.71c10.803-41.677 12.595-58.419 0-58.419-16.23 0-86.477 28.774-128.102 57.19l-27.034-45.056c131.686-111.923 283.187-177.51 348.211-177.51 54.118 0 63.13 65.178 36.096 165.376l-71.219 274.022c-12.595 48.384-7.219 65.075 5.427 65.075 16.23 0 69.478-20.070 121.805-61.798l30.72 41.677c-128.102 130.406-268.032 180.582-322.099 180.582z" + "M932.571 548.571c0 20-16.571 36.571-36.571 36.571h-128c0 71.429-15.429 125.143-38.286 165.714l118.857 119.429c14.286 14.286 14.286 37.143 0 51.429-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-113.143-112.571s-74.857 68.571-172 68.571v-512h-73.143v512c-103.429 0-178.857-75.429-178.857-75.429l-104.571 118.286c-7.429 8-17.143 12-27.429 12-8.571 0-17.143-2.857-24.571-9.143-14.857-13.714-16-36.571-2.857-52l115.429-129.714c-20-39.429-33.143-90.286-33.143-156.571h-128c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h128v-168l-98.857-98.857c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0l98.857 98.857h482.286l98.857-98.857c14.286-14.286 37.143-14.286 51.429 0s14.286 37.143 0 51.429l-98.857 98.857v168h128c20 0 36.571 16.571 36.571 36.571zM658.286 219.429h-365.714c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857z" ], "attrs": [ {} ], + "width": 951, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "info" + "bug" ], - "grid": 20 + "grid": 14 }, "attrs": [ {} @@ -22,724 +23,753 @@ "properties": { "order": 1, "id": 0, - "prevSize": 20, - "code": 59708, - "name": "info" + "prevSize": 28, + "code": 59709, + "name": "bug" }, "setIdx": 0, - "setId": 6, + "setId": 7, "iconIdx": 0 }, { "icon": { "paths": [ - "M522.2 438.8v175.6h290.4c-11.8 75.4-87.8 220.8-290.4 220.8-174.8 0-317.4-144.8-317.4-323.2s142.6-323.2 317.4-323.2c99.4 0 166 42.4 204 79l139-133.8c-89.2-83.6-204.8-134-343-134-283 0-512 229-512 512s229 512 512 512c295.4 0 491.6-207.8 491.6-500.2 0-33.6-3.6-59.2-8-84.8l-483.6-0.2z" + "M793.6 609.416h-61.838v-28.108h-0.783q-21.135 33.092-62.034 33.092-37.573 0-60.469-26.912-22.896-27.112-22.896-75.554 0-50.635 25.244-81.136t66.144-30.501q38.747 0 54.011 28.308h0.783v-121.405h61.838v302.216zM732.936 510.139v-15.35q0-19.935-11.35-33.092t-29.549-13.157q-20.548 0-32.093 16.546-11.546 16.347-11.546 45.053 0 26.912 11.154 41.465t30.919 14.553q18.786 0 30.528-15.35 11.937-15.35 11.937-40.668zM548.594 609.416h-61.643v-116.421q0-44.455-32.093-44.455-15.264 0-24.853 13.357t-9.589 33.292v114.228h-61.839v-117.617q0-43.259-31.506-43.259-15.851 0-25.44 12.758-9.393 12.758-9.393 34.687v113.431h-61.838v-204.135h61.838v31.896h0.783q9.589-16.347 26.81-26.514 17.417-10.366 37.964-10.366 42.465 0 58.12 38.076 22.896-38.076 67.318-38.076 65.361 0 65.361 82.133v126.987zM0 0v204.8h76.8v76.8h51.2v-76.8h76.8v-204.8zM819.2 0v204.8h204.8v-204.8zM51.2 51.2h102.4v102.4h-102.4zM870.4 51.2h102.4v102.4h-102.4zM281.6 76.8v51.2h102.4v-51.2zM486.4 76.8v51.2h102.4v-51.2zM691.2 76.8v51.2h102.4v-51.2zM896 281.6v102.4h51.2v-102.4zM76.8 384v102.4h51.2v-102.4zM896 486.4v102.4h51.2v-102.4zM76.8 588.8v102.4h51.2v-102.4zM896 691.2v102.4h51.2v-102.4zM76.8 793.6v25.6h-76.8v204.8h204.8v-76.8h76.8v-51.2h-76.8v-76.8h-76.8v-25.6zM819.2 819.2v76.8h-25.6v51.2h25.6v76.8h204.8v-204.8zM51.2 870.4h102.4v102.4h-102.4zM870.4 870.4h102.4v102.4h-102.4zM384 896v51.2h102.4v-51.2zM588.8 896v51.2h102.4v-51.2z" ], "attrs": [ {} ], "isMulticolor": false, "isMulticolor2": false, + "grid": 14, "tags": [ - "google", - "brand" - ], - "grid": 16 + "control-Markdown" + ] }, "attrs": [ {} ], "properties": { - "order": 1, - "id": 0, - "prevSize": 32, - "code": 59707, - "name": "google" + "order": 72, + "id": 43, + "name": "control-Markdown", + "prevSize": 28, + "code": 59704 }, - "setIdx": 1, - "setId": 5, + "setIdx": 6, + "setId": 1, "iconIdx": 0 }, { "icon": { "paths": [ - "M768 64c105.87 0 192 86.13 192 192v192h-128v-192c0-35.29-28.71-64-64-64h-128c-35.29 0-64 28.71-64 64v192h16c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48h-544c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h400v-192c0-105.87 86.13-192 192-192h128z" + "M947.2 102.4h-128v-25.6c0-14.131-11.469-25.6-25.6-25.6s-25.6 11.469-25.6 25.6v25.6h-512v-25.6c0-14.131-11.52-25.6-25.6-25.6s-25.6 11.469-25.6 25.6v25.6h-128c-42.342 0-76.8 34.458-76.8 76.8v716.8c0 42.342 34.458 76.8 76.8 76.8h870.4c42.342 0 76.8-34.458 76.8-76.8v-716.8c0-42.342-34.458-76.8-76.8-76.8zM972.8 896c0 14.131-11.469 25.6-25.6 25.6h-870.4c-14.080 0-25.6-11.469-25.6-25.6v-537.6h921.6v537.6zM972.8 307.2h-921.6v-128c0-14.080 11.52-25.6 25.6-25.6h128v76.8c0 14.080 11.52 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-76.8h512v76.8c0 14.080 11.469 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-76.8h128c14.131 0 25.6 11.52 25.6 25.6v128zM332.8 512h51.2c14.080 0 25.6-11.52 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.52-25.6 25.6s11.52 25.6 25.6 25.6zM486.4 512h51.2c14.131 0 25.6-11.52 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.52-25.6 25.6s11.52 25.6 25.6 25.6zM640 512h51.2c14.131 0 25.6-11.52 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.52-25.6 25.6s11.469 25.6 25.6 25.6zM793.6 512h51.2c14.131 0 25.6-11.52 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.52-25.6 25.6s11.469 25.6 25.6 25.6zM179.2 614.4h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM332.8 614.4h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM486.4 614.4h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM640 614.4h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM793.6 614.4h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM179.2 716.8h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM332.8 716.8h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM486.4 716.8h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM640 716.8h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM793.6 716.8h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM179.2 819.2h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM332.8 819.2h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM486.4 819.2h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM640 819.2h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM793.6 819.2h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6z" ], "attrs": [ {} ], "isMulticolor": false, "isMulticolor2": false, + "grid": 14, "tags": [ - "unlocked", - "lock-open" + "control-date" + ] + }, + "attrs": [ + {} + ], + "properties": { + "order": 71, + "id": 42, + "name": "control-Date", + "prevSize": 28, + "code": 59702 + }, + "setIdx": 6, + "setId": 1, + "iconIdx": 9 + }, + { + "icon": { + "paths": [ + "M486.4 409.6h51.2c14.080 0 25.6 11.52 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.52-25.6-25.6s11.52-25.6 25.6-25.6zM230.4 614.4c14.080 0 25.6 11.469 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.469-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM230.4 512c14.080 0 25.6 11.469 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.469-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM51.2 742.4v-435.2h665.6v102.4h51.2v-281.6c0-42.342-34.458-76.8-76.8-76.8h-128v-25.6c0-14.131-11.469-25.6-25.6-25.6s-25.6 11.469-25.6 25.6v25.6h-256v-25.6c0-14.131-11.52-25.6-25.6-25.6s-25.6 11.469-25.6 25.6v25.6h-128c-42.342 0-76.8 34.458-76.8 76.8v614.4c0 42.342 34.458 76.8 76.8 76.8h332.8v-51.2h-332.8c-14.080 0-25.6-11.469-25.6-25.6zM51.2 128c0-14.080 11.52-25.6 25.6-25.6h128v76.8c0 14.080 11.52 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-76.8h256v76.8c0 14.080 11.469 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-76.8h128c14.131 0 25.6 11.52 25.6 25.6v128h-665.6v-128zM384 409.6c14.080 0 25.6 11.52 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.52-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM742.4 460.8c-155.546 0-281.6 126.054-281.6 281.6s126.054 281.6 281.6 281.6 281.6-126.054 281.6-281.6-126.054-281.6-281.6-281.6zM742.4 972.8c-127.232 0-230.4-103.168-230.4-230.4s103.168-230.4 230.4-230.4 230.4 103.168 230.4 230.4-103.168 230.4-230.4 230.4zM384 512c14.080 0 25.6 11.469 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.469-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM384 614.4c14.080 0 25.6 11.469 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.469-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM844.8 716.8c14.131 0 25.6 11.469 25.6 25.6s-11.469 25.6-25.6 25.6h-102.4c-14.131 0-25.6-11.469-25.6-25.6v-102.4c0-14.131 11.469-25.6 25.6-25.6s25.6 11.469 25.6 25.6v76.8h76.8z" ], - "grid": 16 + "attrs": [ + {} + ], + "isMulticolor": false, + "isMulticolor2": false, + "grid": 14, + "tags": [ + "control-date-time" + ] }, "attrs": [ {} ], "properties": { - "order": 1, - "id": 1, - "prevSize": 32, - "code": 59699, - "name": "unlocked" + "order": 70, + "id": 41, + "name": "control-DateTime", + "prevSize": 28, + "code": 59703 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 2 + "iconIdx": 10 }, { "icon": { "paths": [ - "M592 448h-16v-192c0-105.87-86.13-192-192-192h-128c-105.87 0-192 86.13-192 192v192h-16c-26.4 0-48 21.6-48 48v480c0 26.4 21.6 48 48 48h544c26.4 0 48-21.6 48-48v-480c0-26.4-21.6-48-48-48zM192 256c0-35.29 28.71-64 64-64h128c35.29 0 64 28.71 64 64v192h-256v-192z" + "M340 548.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8-5.714-13.143 0-4.571 2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z" ], "attrs": [ {} ], + "width": 347, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "lock", - "secure", - "private", - "encrypted" + "angle-right" ], - "grid": 16 + "grid": 14 }, "attrs": [ {} ], "properties": { - "order": 2, + "order": 67, "id": 0, - "prevSize": 32, - "code": 59700, - "name": "lock" + "prevSize": 28, + "code": 59697, + "name": "angle-right" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 3 + "iconIdx": 11 }, { "icon": { "paths": [ - "M889.68 166.32c-93.608-102.216-228.154-166.32-377.68-166.32-282.77 0-512 229.23-512 512h96c0-229.75 186.25-416 416-416 123.020 0 233.542 53.418 309.696 138.306l-149.696 149.694h352v-352l-134.32 134.32z", - "M928 512c0 229.75-186.25 416-416 416-123.020 0-233.542-53.418-309.694-138.306l149.694-149.694h-352v352l134.32-134.32c93.608 102.216 228.154 166.32 377.68 166.32 282.77 0 512-229.23 512-512h-96z" + "M512 64c-131.696 0-239.125 107.4-239.125 239 0 65.8 24.831 146.717 65.375 215.25 19.653 33.221 43.902 63.853 71.75 87.125-59.423 7.524-122.009 9.415-172.125 32-79.809 35.967-144.343 94.74-172.375 178.625-1.5 9.499 0 0-1.5 9v0.499c0 73.995 60.563 134.501 134.375 134.501h627.125c73.888 0 134.5-60.506 134.5-134.5l-1.5-9.375c-27.845-84.263-92.273-143.119-172.125-179-50.17-22.544-112.844-24.421-172.375-31.875 27.792-23.26 52.002-53.831 71.625-87 40.544-68.533 65.375-149.45 65.375-215.25 0-131.6-107.304-239-239-239zM512 124c99.241 0 179 79.875 179 179 0 49.562-21.877 125.381-57 184.75s-81.435 98.75-122 98.75c-40.565 0-86.877-39.381-122-98.75s-57.125-135.188-57.125-184.75c0-99.125 79.884-179 179.125-179zM512 646.5c92.551 0 180.829 14.406 249.75 45.375 66.784 30.009 113.649 74.724 136.5 137.75-2.447 39.259-32.9 70.375-72.75 70.375h-627.125c-39.678 0-70.116-31.051-72.625-70.25 22.978-62.705 69.953-107.523 136.75-137.625 68.937-31.067 157.205-45.625 249.5-45.625z" ], "attrs": [ - {}, {} ], "isMulticolor": false, "isMulticolor2": false, + "grid": 14, "tags": [ - "loop", - "repeat", - "player", - "reload", - "refresh", - "update", - "synchronize", - "arrows" - ], - "grid": 16 + "user-o" + ] }, "attrs": [ - {}, {} ], "properties": { - "order": 49, - "id": 2, - "prevSize": 32, - "code": 59694, - "name": "reset" + "order": 64, + "id": 38, + "name": "user-o", + "prevSize": 28, + "code": 59698 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 4 + "iconIdx": 12 }, { "icon": { "paths": [ - "M128 128h320v768h-320zM576 128h320v768h-320z" + "M329.143 512c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-512c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z" ], "attrs": [ {} ], + "width": 329, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "pause", - "player" + "caret-right" ], - "grid": 16 + "grid": 14 }, "attrs": [ {} ], "properties": { - "order": 2, - "id": 1, - "prevSize": 32, - "code": 59695, - "name": "pause" + "order": 1, + "id": 7, + "prevSize": 28, + "code": 59689, + "name": "caret-right" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 5 + "iconIdx": 13 }, { "icon": { "paths": [ - "M192 128l640 384-640 384z" + "M365.714 256v512c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z" ], "attrs": [ {} ], + "width": 402, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "play", - "player" + "caret-left" ], - "grid": 16 + "grid": 14 }, "attrs": [ {} ], "properties": { - "order": 3, - "id": 0, - "prevSize": 32, - "code": 59696, - "name": "play" + "order": 2, + "id": 6, + "prevSize": 28, + "code": 59690, + "name": "caret-left" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 6 + "iconIdx": 14 }, { "icon": { "paths": [ - "M933.79 610.25c-53.726-93.054-21.416-212.304 72.152-266.488l-100.626-174.292c-28.75 16.854-62.176 26.518-97.846 26.518-107.536 0-194.708-87.746-194.708-195.99h-201.258c0.266 33.41-8.074 67.282-25.958 98.252-53.724 93.056-173.156 124.702-266.862 70.758l-100.624 174.292c28.97 16.472 54.050 40.588 71.886 71.478 53.638 92.908 21.512 211.92-71.708 266.224l100.626 174.292c28.65-16.696 61.916-26.254 97.4-26.254 107.196 0 194.144 87.192 194.7 194.958h201.254c-0.086-33.074 8.272-66.57 25.966-97.218 53.636-92.906 172.776-124.594 266.414-71.012l100.626-174.29c-28.78-16.466-53.692-40.498-71.434-71.228zM512 719.332c-114.508 0-207.336-92.824-207.336-207.334 0-114.508 92.826-207.334 207.336-207.334 114.508 0 207.332 92.826 207.332 207.334-0.002 114.51-92.824 207.334-207.332 207.334z" + "M585.143 694.857c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z" ], "attrs": [ {} ], + "width": 585, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "cog", - "gear", - "preferences", - "settings", - "generate", - "control", - "options" + "caret-up" ], - "grid": 16 + "grid": 14 }, "attrs": [ {} ], "properties": { - "order": 1, - "id": 1, - "prevSize": 32, - "code": 59693, - "name": "settings2" + "order": 3, + "id": 5, + "prevSize": 28, + "code": 59691, + "name": "caret-up" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 7 + "iconIdx": 15 }, { "icon": { "paths": [ - "M128 320v640c0 35.2 28.8 64 64 64h576c35.2 0 64-28.8 64-64v-640h-704zM320 896h-64v-448h64v448zM448 896h-64v-448h64v448zM576 896h-64v-448h64v448zM704 896h-64v-448h64v448z", - "M848 128h-208v-80c0-26.4-21.6-48-48-48h-224c-26.4 0-48 21.6-48 48v80h-208c-26.4 0-48 21.6-48 48v80h832v-80c0-26.4-21.6-48-48-48zM576 128h-192v-63.198h192v63.198z" + "M585.143 402.286c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571z" ], "attrs": [ - {}, {} ], + "width": 585, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "bin", - "trashcan", - "remove", - "delete", - "recycle", - "dispose" + "caret-down" ], - "grid": 16 + "grid": 14 }, "attrs": [ - {}, {} ], "properties": { - "order": 1, - "id": 0, - "name": "bin2", - "prevSize": 32, - "code": 59650 + "order": 4, + "id": 4, + "prevSize": 28, + "code": 59692, + "name": "caret-down" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 8 + "iconIdx": 16 }, { "icon": { "paths": [ - "M1020.192 401.824c-8.864-25.568-31.616-44.288-59.008-48.352l-266.432-39.616-115.808-240.448c-12.192-25.248-38.272-41.408-66.944-41.408s-54.752 16.16-66.944 41.408l-115.808 240.448-266.464 39.616c-27.36 4.064-50.112 22.784-58.944 48.352-8.8 25.632-2.144 53.856 17.184 73.12l195.264 194.944-45.28 270.432c-4.608 27.232 7.2 54.56 30.336 70.496 12.704 8.736 27.648 13.184 42.592 13.184 12.288 0 24.608-3.008 35.776-8.992l232.288-125.056 232.32 125.056c11.168 5.984 23.488 8.992 35.744 8.992 14.944 0 29.888-4.448 42.624-13.184 23.136-15.936 34.88-43.264 30.304-70.496l-45.312-270.432 195.328-194.944c19.296-19.296 25.92-47.52 17.184-73.12zM754.816 619.616c-16.384 16.32-23.808 39.328-20.064 61.888l45.312 270.432-232.32-124.992c-11.136-6.016-23.424-8.992-35.776-8.992-12.288 0-24.608 3.008-35.744 8.992l-232.32 124.992 45.312-270.432c3.776-22.56-3.648-45.568-20.032-61.888l-195.264-194.944 266.432-39.68c24.352-3.616 45.312-18.848 55.776-40.576l115.872-240.384 115.84 240.416c10.496 21.728 31.424 36.928 55.744 40.576l266.496 39.68-195.264 194.912z" + "M614.286 676.571c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z" ], "attrs": [ {} ], + "width": 658, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "star", - "favorite" + "angle-up" ], - "grid": 32 + "grid": 14 }, "attrs": [ {} ], "properties": { - "order": 1, - "id": 0, - "prevSize": 32, - "code": 59706, - "name": "control-Stars" + "order": 2, + "id": 2, + "prevSize": 28, + "code": 59651, + "name": "angle-up" }, - "setIdx": 2, - "setId": 4, - "iconIdx": 0 + "setIdx": 6, + "setId": 1, + "iconIdx": 17 }, { "icon": { "paths": [ - "M1328 320c-8.832 0-16 7.168-16 16v640c0 8.832-7.168 16-16 16h-1248c-8.832 0-16-7.168-16-16v-640c0-8.832-7.168-16-16-16s-16 7.168-16 16v640c0 26.464 21.536 48 48 48h1248c26.464 0 48-21.536 48-48v-640c0-8.832-7.168-16-16-16zM1296 0h-1248c-26.464 0-48 21.536-48 48v192c0 8.832 7.168 16 16 16h1312c8.832 0 16-7.168 16-16v-192c0-26.464-21.536-48-48-48zM1312 224h-1280v-176c0-8.832 7.168-16 16-16h1248c8.832 0 16 7.168 16 16v176zM560 896c8.832 0 16-7.168 16-16v-512c0-8.832-7.168-16-16-16h-416c-8.832 0-16 7.168-16 16v512c0 8.832 7.168 16 16 16h416zM160 384h384v480h-384v-480zM720 480h480c8.832 0 16-7.168 16-16s-7.168-16-16-16h-480c-8.832 0-16 7.168-16 16s7.168 16 16 16zM720 640h480c8.832 0 16-7.168 16-16s-7.168-16-16-16h-480c-8.832 0-16 7.168-16 16s7.168 16 16 16zM720 800h480c8.832 0 16-7.168 16-16s-7.168-16-16-16h-480c-8.832 0-16 7.168-16 16s7.168 16 16 16zM96 128c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM224 128c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM352 128c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32z" + "M614.286 420.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143z" ], "attrs": [ {} ], - "width": 1344, + "width": 658, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "browser", - "window", - "software", - "program" + "angle-down" ], - "grid": 32 + "grid": 14 }, "attrs": [ {} ], "properties": { "order": 1, - "id": 0, - "prevSize": 32, - "code": 59701, - "name": "browser" + "id": 1, + "prevSize": 28, + "code": 59648, + "name": "angle-down" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 1 + "iconIdx": 18 }, { "icon": { "paths": [ - "M918 384v128h-128v298h-128v-298h-128v-128h384zM106 170h556v128h-214v512h-128v-512h-214v-128z" + "M358.286 310.857c0 4.571-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8 5.714 13.143z" ], "attrs": [ {} ], + "width": 384, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "text_fields" + "angle-left" ], - "grid": 24 + "grid": 14 }, "attrs": [ {} ], "properties": { - "order": 75, + "order": 2, "id": 0, - "prevSize": 24, - "code": 59705, - "name": "control-RichText" + "prevSize": 28, + "code": 59649, + "name": "angle-left" }, - "setIdx": 4, - "setId": 2, - "iconIdx": 0 + "setIdx": 6, + "setId": 1, + "iconIdx": 19 }, { "icon": { "paths": [ - "M793.6 609.416h-61.838v-28.108h-0.783q-21.135 33.092-62.034 33.092-37.573 0-60.469-26.912-22.896-27.112-22.896-75.554 0-50.635 25.244-81.136t66.144-30.501q38.747 0 54.011 28.308h0.783v-121.405h61.838v302.216zM732.936 510.139v-15.35q0-19.935-11.35-33.092t-29.549-13.157q-20.548 0-32.093 16.546-11.546 16.347-11.546 45.053 0 26.912 11.154 41.465t30.919 14.553q18.786 0 30.528-15.35 11.937-15.35 11.937-40.668zM548.594 609.416h-61.643v-116.421q0-44.455-32.093-44.455-15.264 0-24.853 13.357t-9.589 33.292v114.228h-61.839v-117.617q0-43.259-31.506-43.259-15.851 0-25.44 12.758-9.393 12.758-9.393 34.687v113.431h-61.838v-204.135h61.838v31.896h0.783q9.589-16.347 26.81-26.514 17.417-10.366 37.964-10.366 42.465 0 58.12 38.076 22.896-38.076 67.318-38.076 65.361 0 65.361 82.133v126.987zM0 0v204.8h76.8v76.8h51.2v-76.8h76.8v-204.8zM819.2 0v204.8h204.8v-204.8zM51.2 51.2h102.4v102.4h-102.4zM870.4 51.2h102.4v102.4h-102.4zM281.6 76.8v51.2h102.4v-51.2zM486.4 76.8v51.2h102.4v-51.2zM691.2 76.8v51.2h102.4v-51.2zM896 281.6v102.4h51.2v-102.4zM76.8 384v102.4h51.2v-102.4zM896 486.4v102.4h51.2v-102.4zM76.8 588.8v102.4h51.2v-102.4zM896 691.2v102.4h51.2v-102.4zM76.8 793.6v25.6h-76.8v204.8h204.8v-76.8h76.8v-51.2h-76.8v-76.8h-76.8v-25.6zM819.2 819.2v76.8h-25.6v51.2h25.6v76.8h204.8v-204.8zM51.2 870.4h102.4v102.4h-102.4zM870.4 870.4h102.4v102.4h-102.4zM384 896v51.2h102.4v-51.2zM588.8 896v51.2h102.4v-51.2z" + "M636.518 0c68.608 0 102.912 46.694 102.912 100.198 0 66.816-59.597 128.614-137.165 128.614-64.973 0-102.861-38.4-101.069-101.888 0-53.402 45.107-126.925 135.322-126.925zM425.421 1024c-54.17 0-93.85-33.382-55.962-180.429l62.157-260.71c10.803-41.677 12.595-58.419 0-58.419-16.23 0-86.477 28.774-128.102 57.19l-27.034-45.056c131.686-111.923 283.187-177.51 348.211-177.51 54.118 0 63.13 65.178 36.096 165.376l-71.219 274.022c-12.595 48.384-7.219 65.075 5.427 65.075 16.23 0 69.478-20.070 121.805-61.798l30.72 41.677c-128.102 130.406-268.032 180.582-322.099 180.582z" ], "attrs": [ {} ], "isMulticolor": false, "isMulticolor2": false, - "grid": 14, "tags": [ - "control-Markdown" - ] + "info" + ], + "grid": 20 }, "attrs": [ {} ], "properties": { - "order": 72, - "id": 43, - "name": "control-Markdown", - "prevSize": 32, - "code": 59704 + "order": 1, + "id": 0, + "prevSize": 20, + "code": 59708, + "name": "info" }, - "setIdx": 5, - "setId": 1, + "setIdx": 1, + "setId": 6, "iconIdx": 0 }, { "icon": { "paths": [ - "M947.2 102.4h-128v-25.6c0-14.131-11.469-25.6-25.6-25.6s-25.6 11.469-25.6 25.6v25.6h-512v-25.6c0-14.131-11.52-25.6-25.6-25.6s-25.6 11.469-25.6 25.6v25.6h-128c-42.342 0-76.8 34.458-76.8 76.8v716.8c0 42.342 34.458 76.8 76.8 76.8h870.4c42.342 0 76.8-34.458 76.8-76.8v-716.8c0-42.342-34.458-76.8-76.8-76.8zM972.8 896c0 14.131-11.469 25.6-25.6 25.6h-870.4c-14.080 0-25.6-11.469-25.6-25.6v-537.6h921.6v537.6zM972.8 307.2h-921.6v-128c0-14.080 11.52-25.6 25.6-25.6h128v76.8c0 14.080 11.52 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-76.8h512v76.8c0 14.080 11.469 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-76.8h128c14.131 0 25.6 11.52 25.6 25.6v128zM332.8 512h51.2c14.080 0 25.6-11.52 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.52-25.6 25.6s11.52 25.6 25.6 25.6zM486.4 512h51.2c14.131 0 25.6-11.52 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.52-25.6 25.6s11.52 25.6 25.6 25.6zM640 512h51.2c14.131 0 25.6-11.52 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.52-25.6 25.6s11.469 25.6 25.6 25.6zM793.6 512h51.2c14.131 0 25.6-11.52 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.52-25.6 25.6s11.469 25.6 25.6 25.6zM179.2 614.4h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM332.8 614.4h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM486.4 614.4h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM640 614.4h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM793.6 614.4h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM179.2 716.8h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM332.8 716.8h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM486.4 716.8h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM640 716.8h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM793.6 716.8h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM179.2 819.2h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM332.8 819.2h51.2c14.080 0 25.6-11.469 25.6-25.6s-11.52-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM486.4 819.2h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.080 0-25.6 11.469-25.6 25.6s11.52 25.6 25.6 25.6zM640 819.2h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6zM793.6 819.2h51.2c14.131 0 25.6-11.469 25.6-25.6s-11.469-25.6-25.6-25.6h-51.2c-14.131 0-25.6 11.469-25.6 25.6s11.469 25.6 25.6 25.6z" + "M522.2 438.8v175.6h290.4c-11.8 75.4-87.8 220.8-290.4 220.8-174.8 0-317.4-144.8-317.4-323.2s142.6-323.2 317.4-323.2c99.4 0 166 42.4 204 79l139-133.8c-89.2-83.6-204.8-134-343-134-283 0-512 229-512 512s229 512 512 512c295.4 0 491.6-207.8 491.6-500.2 0-33.6-3.6-59.2-8-84.8l-483.6-0.2z" ], "attrs": [ {} ], "isMulticolor": false, "isMulticolor2": false, - "grid": 14, "tags": [ - "control-date" - ] + "google", + "brand" + ], + "grid": 16 }, "attrs": [ {} ], "properties": { - "order": 71, - "id": 42, - "name": "control-Date", + "order": 1, + "id": 0, "prevSize": 32, - "code": 59702 + "code": 59707, + "name": "google" }, - "setIdx": 5, - "setId": 1, - "iconIdx": 9 + "setIdx": 2, + "setId": 5, + "iconIdx": 0 }, { "icon": { "paths": [ - "M486.4 409.6h51.2c14.080 0 25.6 11.52 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.52-25.6-25.6s11.52-25.6 25.6-25.6zM230.4 614.4c14.080 0 25.6 11.469 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.469-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM230.4 512c14.080 0 25.6 11.469 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.469-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM51.2 742.4v-435.2h665.6v102.4h51.2v-281.6c0-42.342-34.458-76.8-76.8-76.8h-128v-25.6c0-14.131-11.469-25.6-25.6-25.6s-25.6 11.469-25.6 25.6v25.6h-256v-25.6c0-14.131-11.52-25.6-25.6-25.6s-25.6 11.469-25.6 25.6v25.6h-128c-42.342 0-76.8 34.458-76.8 76.8v614.4c0 42.342 34.458 76.8 76.8 76.8h332.8v-51.2h-332.8c-14.080 0-25.6-11.469-25.6-25.6zM51.2 128c0-14.080 11.52-25.6 25.6-25.6h128v76.8c0 14.080 11.52 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-76.8h256v76.8c0 14.080 11.469 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-76.8h128c14.131 0 25.6 11.52 25.6 25.6v128h-665.6v-128zM384 409.6c14.080 0 25.6 11.52 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.52-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM742.4 460.8c-155.546 0-281.6 126.054-281.6 281.6s126.054 281.6 281.6 281.6 281.6-126.054 281.6-281.6-126.054-281.6-281.6-281.6zM742.4 972.8c-127.232 0-230.4-103.168-230.4-230.4s103.168-230.4 230.4-230.4 230.4 103.168 230.4 230.4-103.168 230.4-230.4 230.4zM384 512c14.080 0 25.6 11.469 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.469-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM384 614.4c14.080 0 25.6 11.469 25.6 25.6s-11.52 25.6-25.6 25.6h-51.2c-14.080 0-25.6-11.469-25.6-25.6s11.52-25.6 25.6-25.6h51.2zM844.8 716.8c14.131 0 25.6 11.469 25.6 25.6s-11.469 25.6-25.6 25.6h-102.4c-14.131 0-25.6-11.469-25.6-25.6v-102.4c0-14.131 11.469-25.6 25.6-25.6s25.6 11.469 25.6 25.6v76.8h76.8z" + "M768 64c105.87 0 192 86.13 192 192v192h-128v-192c0-35.29-28.71-64-64-64h-128c-35.29 0-64 28.71-64 64v192h16c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48h-544c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h400v-192c0-105.87 86.13-192 192-192h128z" ], "attrs": [ {} ], "isMulticolor": false, "isMulticolor2": false, - "grid": 14, "tags": [ - "control-date-time" - ] + "unlocked", + "lock-open" + ], + "grid": 16 }, "attrs": [ {} ], "properties": { - "order": 70, - "id": 41, - "name": "control-DateTime", + "order": 1, + "id": 1, "prevSize": 32, - "code": 59703 + "code": 59699, + "name": "unlocked" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 10 + "iconIdx": 2 }, { "icon": { "paths": [ - "M340 548.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8-5.714-13.143 0-4.571 2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z" + "M592 448h-16v-192c0-105.87-86.13-192-192-192h-128c-105.87 0-192 86.13-192 192v192h-16c-26.4 0-48 21.6-48 48v480c0 26.4 21.6 48 48 48h544c26.4 0 48-21.6 48-48v-480c0-26.4-21.6-48-48-48zM192 256c0-35.29 28.71-64 64-64h128c35.29 0 64 28.71 64 64v192h-256v-192z" ], "attrs": [ {} ], - "width": 347, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "angle-right" + "lock", + "secure", + "private", + "encrypted" ], - "grid": 14 + "grid": 16 }, "attrs": [ {} ], "properties": { - "order": 67, + "order": 2, "id": 0, "prevSize": 32, - "code": 59697, - "name": "angle-right" + "code": 59700, + "name": "lock" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 11 + "iconIdx": 3 }, { "icon": { "paths": [ - "M512 64c-131.696 0-239.125 107.4-239.125 239 0 65.8 24.831 146.717 65.375 215.25 19.653 33.221 43.902 63.853 71.75 87.125-59.423 7.524-122.009 9.415-172.125 32-79.809 35.967-144.343 94.74-172.375 178.625-1.5 9.499 0 0-1.5 9v0.499c0 73.995 60.563 134.501 134.375 134.501h627.125c73.888 0 134.5-60.506 134.5-134.5l-1.5-9.375c-27.845-84.263-92.273-143.119-172.125-179-50.17-22.544-112.844-24.421-172.375-31.875 27.792-23.26 52.002-53.831 71.625-87 40.544-68.533 65.375-149.45 65.375-215.25 0-131.6-107.304-239-239-239zM512 124c99.241 0 179 79.875 179 179 0 49.562-21.877 125.381-57 184.75s-81.435 98.75-122 98.75c-40.565 0-86.877-39.381-122-98.75s-57.125-135.188-57.125-184.75c0-99.125 79.884-179 179.125-179zM512 646.5c92.551 0 180.829 14.406 249.75 45.375 66.784 30.009 113.649 74.724 136.5 137.75-2.447 39.259-32.9 70.375-72.75 70.375h-627.125c-39.678 0-70.116-31.051-72.625-70.25 22.978-62.705 69.953-107.523 136.75-137.625 68.937-31.067 157.205-45.625 249.5-45.625z" + "M889.68 166.32c-93.608-102.216-228.154-166.32-377.68-166.32-282.77 0-512 229.23-512 512h96c0-229.75 186.25-416 416-416 123.020 0 233.542 53.418 309.696 138.306l-149.696 149.694h352v-352l-134.32 134.32z", + "M928 512c0 229.75-186.25 416-416 416-123.020 0-233.542-53.418-309.694-138.306l149.694-149.694h-352v352l134.32-134.32c93.608 102.216 228.154 166.32 377.68 166.32 282.77 0 512-229.23 512-512h-96z" ], "attrs": [ + {}, {} ], "isMulticolor": false, "isMulticolor2": false, - "grid": 14, "tags": [ - "user-o" - ] + "loop", + "repeat", + "player", + "reload", + "refresh", + "update", + "synchronize", + "arrows" + ], + "grid": 16 }, "attrs": [ + {}, {} ], "properties": { - "order": 64, - "id": 38, - "name": "user-o", + "order": 49, + "id": 2, "prevSize": 32, - "code": 59698 + "code": 59694, + "name": "reset" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 12 + "iconIdx": 4 }, { "icon": { "paths": [ - "M329.143 512c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-512c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z" + "M128 128h320v768h-320zM576 128h320v768h-320z" ], "attrs": [ {} ], - "width": 329, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "caret-right" + "pause", + "player" ], - "grid": 14 + "grid": 16 }, "attrs": [ {} ], "properties": { - "order": 1, - "id": 7, + "order": 2, + "id": 1, "prevSize": 32, - "code": 59689, - "name": "caret-right" + "code": 59695, + "name": "pause" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 13 + "iconIdx": 5 }, { "icon": { "paths": [ - "M365.714 256v512c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z" + "M192 128l640 384-640 384z" ], "attrs": [ {} ], - "width": 402, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "caret-left" + "play", + "player" ], - "grid": 14 + "grid": 16 }, "attrs": [ {} ], "properties": { - "order": 2, - "id": 6, + "order": 3, + "id": 0, "prevSize": 32, - "code": 59690, - "name": "caret-left" + "code": 59696, + "name": "play" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 14 + "iconIdx": 6 }, { "icon": { "paths": [ - "M585.143 694.857c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z" + "M933.79 610.25c-53.726-93.054-21.416-212.304 72.152-266.488l-100.626-174.292c-28.75 16.854-62.176 26.518-97.846 26.518-107.536 0-194.708-87.746-194.708-195.99h-201.258c0.266 33.41-8.074 67.282-25.958 98.252-53.724 93.056-173.156 124.702-266.862 70.758l-100.624 174.292c28.97 16.472 54.050 40.588 71.886 71.478 53.638 92.908 21.512 211.92-71.708 266.224l100.626 174.292c28.65-16.696 61.916-26.254 97.4-26.254 107.196 0 194.144 87.192 194.7 194.958h201.254c-0.086-33.074 8.272-66.57 25.966-97.218 53.636-92.906 172.776-124.594 266.414-71.012l100.626-174.29c-28.78-16.466-53.692-40.498-71.434-71.228zM512 719.332c-114.508 0-207.336-92.824-207.336-207.334 0-114.508 92.826-207.334 207.336-207.334 114.508 0 207.332 92.826 207.332 207.334-0.002 114.51-92.824 207.334-207.332 207.334z" ], "attrs": [ {} ], - "width": 585, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "caret-up" + "cog", + "gear", + "preferences", + "settings", + "generate", + "control", + "options" ], - "grid": 14 + "grid": 16 }, "attrs": [ {} ], "properties": { - "order": 3, - "id": 5, + "order": 1, + "id": 1, "prevSize": 32, - "code": 59691, - "name": "caret-up" + "code": 59693, + "name": "settings2" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 15 + "iconIdx": 7 }, { "icon": { "paths": [ - "M585.143 402.286c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571z" + "M128 320v640c0 35.2 28.8 64 64 64h576c35.2 0 64-28.8 64-64v-640h-704zM320 896h-64v-448h64v448zM448 896h-64v-448h64v448zM576 896h-64v-448h64v448zM704 896h-64v-448h64v448z", + "M848 128h-208v-80c0-26.4-21.6-48-48-48h-224c-26.4 0-48 21.6-48 48v80h-208c-26.4 0-48 21.6-48 48v80h832v-80c0-26.4-21.6-48-48-48zM576 128h-192v-63.198h192v63.198z" ], "attrs": [ + {}, {} ], - "width": 585, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "caret-down" + "bin", + "trashcan", + "remove", + "delete", + "recycle", + "dispose" ], - "grid": 14 + "grid": 16 }, "attrs": [ + {}, {} ], "properties": { - "order": 4, - "id": 4, + "order": 1, + "id": 0, + "name": "bin2", "prevSize": 32, - "code": 59692, - "name": "caret-down" + "code": 59650 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 16 + "iconIdx": 8 }, { "icon": { "paths": [ - "M614.286 676.571c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z" + "M1020.192 401.824c-8.864-25.568-31.616-44.288-59.008-48.352l-266.432-39.616-115.808-240.448c-12.192-25.248-38.272-41.408-66.944-41.408s-54.752 16.16-66.944 41.408l-115.808 240.448-266.464 39.616c-27.36 4.064-50.112 22.784-58.944 48.352-8.8 25.632-2.144 53.856 17.184 73.12l195.264 194.944-45.28 270.432c-4.608 27.232 7.2 54.56 30.336 70.496 12.704 8.736 27.648 13.184 42.592 13.184 12.288 0 24.608-3.008 35.776-8.992l232.288-125.056 232.32 125.056c11.168 5.984 23.488 8.992 35.744 8.992 14.944 0 29.888-4.448 42.624-13.184 23.136-15.936 34.88-43.264 30.304-70.496l-45.312-270.432 195.328-194.944c19.296-19.296 25.92-47.52 17.184-73.12zM754.816 619.616c-16.384 16.32-23.808 39.328-20.064 61.888l45.312 270.432-232.32-124.992c-11.136-6.016-23.424-8.992-35.776-8.992-12.288 0-24.608 3.008-35.744 8.992l-232.32 124.992 45.312-270.432c3.776-22.56-3.648-45.568-20.032-61.888l-195.264-194.944 266.432-39.68c24.352-3.616 45.312-18.848 55.776-40.576l115.872-240.384 115.84 240.416c10.496 21.728 31.424 36.928 55.744 40.576l266.496 39.68-195.264 194.912z" ], "attrs": [ {} ], - "width": 658, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "angle-up" + "star", + "favorite" ], - "grid": 14 + "grid": 32 }, "attrs": [ {} ], "properties": { - "order": 2, - "id": 2, + "order": 1, + "id": 0, "prevSize": 32, - "code": 59651, - "name": "angle-up" + "code": 59706, + "name": "control-Stars" }, - "setIdx": 5, - "setId": 1, - "iconIdx": 17 + "setIdx": 3, + "setId": 4, + "iconIdx": 0 }, { "icon": { "paths": [ - "M614.286 420.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143z" + "M1328 320c-8.832 0-16 7.168-16 16v640c0 8.832-7.168 16-16 16h-1248c-8.832 0-16-7.168-16-16v-640c0-8.832-7.168-16-16-16s-16 7.168-16 16v640c0 26.464 21.536 48 48 48h1248c26.464 0 48-21.536 48-48v-640c0-8.832-7.168-16-16-16zM1296 0h-1248c-26.464 0-48 21.536-48 48v192c0 8.832 7.168 16 16 16h1312c8.832 0 16-7.168 16-16v-192c0-26.464-21.536-48-48-48zM1312 224h-1280v-176c0-8.832 7.168-16 16-16h1248c8.832 0 16 7.168 16 16v176zM560 896c8.832 0 16-7.168 16-16v-512c0-8.832-7.168-16-16-16h-416c-8.832 0-16 7.168-16 16v512c0 8.832 7.168 16 16 16h416zM160 384h384v480h-384v-480zM720 480h480c8.832 0 16-7.168 16-16s-7.168-16-16-16h-480c-8.832 0-16 7.168-16 16s7.168 16 16 16zM720 640h480c8.832 0 16-7.168 16-16s-7.168-16-16-16h-480c-8.832 0-16 7.168-16 16s7.168 16 16 16zM720 800h480c8.832 0 16-7.168 16-16s-7.168-16-16-16h-480c-8.832 0-16 7.168-16 16s7.168 16 16 16zM96 128c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM224 128c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM352 128c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32z" ], "attrs": [ {} ], - "width": 658, + "width": 1344, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "angle-down" + "browser", + "window", + "software", + "program" ], - "grid": 14 + "grid": 32 }, "attrs": [ {} ], "properties": { "order": 1, - "id": 1, + "id": 0, "prevSize": 32, - "code": 59648, - "name": "angle-down" + "code": 59701, + "name": "browser" }, - "setIdx": 5, + "setIdx": 6, "setId": 1, - "iconIdx": 18 + "iconIdx": 1 }, { "icon": { "paths": [ - "M358.286 310.857c0 4.571-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8 5.714 13.143z" + "M918 384v128h-128v298h-128v-298h-128v-128h384zM106 170h556v128h-214v512h-128v-512h-214v-128z" ], "attrs": [ {} ], - "width": 384, "isMulticolor": false, "isMulticolor2": false, "tags": [ - "angle-left" + "text_fields" ], - "grid": 14 + "grid": 24 }, "attrs": [ {} ], "properties": { - "order": 2, + "order": 75, "id": 0, - "prevSize": 32, - "code": 59649, - "name": "angle-left" + "prevSize": 24, + "code": 59705, + "name": "control-RichText" }, "setIdx": 5, - "setId": 1, - "iconIdx": 19 + "setId": 2, + "iconIdx": 0 }, { "icon": { @@ -766,7 +796,7 @@ "prevSize": 32, "code": 59652 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 20 }, @@ -795,7 +825,7 @@ "prevSize": 32, "code": 59653 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 21 }, @@ -824,7 +854,7 @@ "prevSize": 32, "code": 59654 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 22 }, @@ -853,7 +883,7 @@ "prevSize": 32, "code": 59655 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 23 }, @@ -882,7 +912,7 @@ "prevSize": 32, "code": 59656 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 24 }, @@ -911,7 +941,7 @@ "prevSize": 32, "code": 59657 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 25 }, @@ -940,7 +970,7 @@ "prevSize": 32, "code": 59658 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 26 }, @@ -969,7 +999,7 @@ "prevSize": 32, "code": 59659 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 27 }, @@ -998,7 +1028,7 @@ "prevSize": 32, "code": 59660 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 28 }, @@ -1027,7 +1057,7 @@ "prevSize": 32, "code": 59661 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 29 }, @@ -1056,7 +1086,7 @@ "prevSize": 32, "code": 59662 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 30 }, @@ -1085,7 +1115,7 @@ "prevSize": 32, "code": 59663 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 31 }, @@ -1114,7 +1144,7 @@ "prevSize": 32, "code": 59664 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 32 }, @@ -1143,7 +1173,7 @@ "prevSize": 32, "code": 59665 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 33 }, @@ -1172,7 +1202,7 @@ "prevSize": 32, "code": 59666 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 34 }, @@ -1201,7 +1231,7 @@ "prevSize": 32, "code": 59667 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 35 }, @@ -1230,7 +1260,7 @@ "prevSize": 32, "code": 59668 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 36 }, @@ -1259,7 +1289,7 @@ "prevSize": 32, "code": 59669 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 37 }, @@ -1288,7 +1318,7 @@ "prevSize": 32, "code": 59670 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 38 }, @@ -1317,7 +1347,7 @@ "prevSize": 32, "code": 59671 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 39 }, @@ -1346,7 +1376,7 @@ "prevSize": 32, "code": 59672 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 40 }, @@ -1375,7 +1405,7 @@ "prevSize": 32, "code": 59673 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 41 }, @@ -1404,7 +1434,7 @@ "prevSize": 32, "code": 59674 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 42 }, @@ -1433,7 +1463,7 @@ "prevSize": 32, "code": 59675 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 43 }, @@ -1462,7 +1492,7 @@ "prevSize": 32, "code": 59676 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 44 }, @@ -1491,7 +1521,7 @@ "prevSize": 32, "code": 59677 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 45 }, @@ -1520,7 +1550,7 @@ "prevSize": 32, "code": 59678 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 46 }, @@ -1549,7 +1579,7 @@ "prevSize": 32, "code": 59679 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 47 }, @@ -1578,7 +1608,7 @@ "prevSize": 32, "code": 59680 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 48 }, @@ -1607,7 +1637,7 @@ "prevSize": 32, "code": 59681 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 49 }, @@ -1636,7 +1666,7 @@ "prevSize": 32, "code": 59682 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 50 }, @@ -1665,7 +1695,7 @@ "prevSize": 32, "code": 59683 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 51 }, @@ -1694,7 +1724,7 @@ "prevSize": 32, "code": 59684 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 52 }, @@ -1723,7 +1753,7 @@ "prevSize": 32, "code": 59685 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 53 }, @@ -1752,7 +1782,7 @@ "prevSize": 32, "code": 59686 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 54 }, @@ -1781,7 +1811,7 @@ "prevSize": 32, "code": 59687 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 55 }, @@ -1810,7 +1840,7 @@ "prevSize": 32, "code": 59688 }, - "setIdx": 5, + "setIdx": 6, "setId": 1, "iconIdx": 56 } diff --git a/src/Squidex/app/theme/icomoon/style.css b/src/Squidex/app/theme/icomoon/style.css index 27aad8168..55ad04871 100644 --- a/src/Squidex/app/theme/icomoon/style.css +++ b/src/Squidex/app/theme/icomoon/style.css @@ -1,10 +1,10 @@ @font-face { font-family: 'icomoon'; - src: url('fonts/icomoon.eot?1zk1rh'); - src: url('fonts/icomoon.eot?1zk1rh#iefix') format('embedded-opentype'), - url('fonts/icomoon.ttf?1zk1rh') format('truetype'), - url('fonts/icomoon.woff?1zk1rh') format('woff'), - url('fonts/icomoon.svg?1zk1rh#icomoon') format('svg'); + src: url('fonts/icomoon.eot?jcn9ba'); + src: url('fonts/icomoon.eot?jcn9ba#iefix') format('embedded-opentype'), + url('fonts/icomoon.ttf?jcn9ba') format('truetype'), + url('fonts/icomoon.woff?jcn9ba') format('woff'), + url('fonts/icomoon.svg?jcn9ba#icomoon') format('svg'); font-weight: normal; font-style: normal; } @@ -24,9 +24,69 @@ -moz-osx-font-smoothing: grayscale; } +.icon-bug:before { + content: "\e93d"; +} +.icon-control-Markdown:before { + content: "\e938"; +} +.icon-control-Date:before { + content: "\e936"; +} +.icon-control-DateTime:before { + content: "\e937"; +} +.icon-angle-right:before { + content: "\e931"; +} +.icon-user-o:before { + content: "\e932"; +} +.icon-caret-right:before { + content: "\e929"; +} +.icon-caret-left:before { + content: "\e92a"; +} +.icon-caret-up:before { + content: "\e92b"; +} +.icon-caret-down:before { + content: "\e92c"; +} +.icon-angle-up:before { + content: "\e903"; +} +.icon-angle-down:before { + content: "\e900"; +} +.icon-angle-left:before { + content: "\e901"; +} .icon-info:before { content: "\e93c"; } +.icon-unlocked:before { + content: "\e933"; +} +.icon-lock:before { + content: "\e934"; +} +.icon-reset:before { + content: "\e92e"; +} +.icon-pause:before { + content: "\e92f"; +} +.icon-play:before { + content: "\e930"; +} +.icon-settings2:before { + content: "\e92d"; +} +.icon-bin2:before { + content: "\e902"; +} .icon-google:before { content: "\e93b"; } @@ -63,42 +123,6 @@ .icon-control-Date:before { content: "\e936"; } -.icon-control-Markdown:before { - content: "\e938"; -} -.icon-control-Date:before { - content: "\e936"; -} -.icon-control-DateTime:before { - content: "\e937"; -} -.icon-angle-right:before { - content: "\e931"; -} -.icon-user-o:before { - content: "\e932"; -} -.icon-caret-right:before { - content: "\e929"; -} -.icon-caret-left:before { - content: "\e92a"; -} -.icon-caret-up:before { - content: "\e92b"; -} -.icon-caret-down:before { - content: "\e92c"; -} -.icon-angle-up:before { - content: "\e903"; -} -.icon-angle-down:before { - content: "\e900"; -} -.icon-angle-left:before { - content: "\e901"; -} .icon-activity:before { content: "\e904"; } diff --git a/src/Squidex/appsettings.json b/src/Squidex/appsettings.json index 6b92e4a90..c72c9e935 100644 --- a/src/Squidex/appsettings.json +++ b/src/Squidex/appsettings.json @@ -20,7 +20,8 @@ "type": "mongoDb", "mongoDb": { "connectionString": "mongodb://localhost", - "databaseName": "Squidex" + "databaseName": "Squidex", + "databaseNameContent": "SquidexContent" } }, "identity": { diff --git a/tests/Squidex.Write.Tests/Contents/ContentCommandHandlerTests.cs b/tests/Squidex.Write.Tests/Contents/ContentCommandHandlerTests.cs index 1a2d3cbe4..2c953a11a 100644 --- a/tests/Squidex.Write.Tests/Contents/ContentCommandHandlerTests.cs +++ b/tests/Squidex.Write.Tests/Contents/ContentCommandHandlerTests.cs @@ -51,7 +51,7 @@ namespace Squidex.Write.Contents appProvider.Setup(x => x.FindAppByIdAsync(AppId)).Returns(Task.FromResult(appEntity.Object)); schemaEntity.Setup(x => x.Schema).Returns(schema); - schemaProvider.Setup(x => x.FindSchemaByIdAsync(SchemaId)).Returns(Task.FromResult(schemaEntity.Object)); + schemaProvider.Setup(x => x.FindSchemaByIdAsync(SchemaId, true)).Returns(Task.FromResult(schemaEntity.Object)); } [Fact]