@skyux/icons 9.4.0 → 10.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,4 +1 @@
1
- export * from './module/__get-icon-manifest';
2
- export * from './module/icon-manifest';
3
- export * from './module/icon-manifest-glyph';
4
1
  export { VERSION } from './module/version';
package/index.js CHANGED
@@ -1,22 +1 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.VERSION = void 0;
18
- __exportStar(require("./module/__get-icon-manifest"), exports);
19
- __exportStar(require("./module/icon-manifest"), exports);
20
- __exportStar(require("./module/icon-manifest-glyph"), exports);
21
- var version_1 = require("./module/version");
22
- Object.defineProperty(exports, "VERSION", { enumerable: true, get: function () { return version_1.VERSION; } });
1
+ export { VERSION } from './module/version';
package/module/version.js CHANGED
@@ -1,12 +1,10 @@
1
- "use strict";
2
1
  // Taken from Angular's version.ts file.
3
2
  // See: https://github.com/angular/angular/blob/16.2.x/packages/core/src/version.ts
4
- Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.VERSION = exports.Version = void 0;
3
+ // This file is used for the Stackblitz code examples.s
6
4
  /**
7
5
  * @internal
8
6
  */
9
- class Version {
7
+ export class Version {
10
8
  constructor(full) {
11
9
  this.full = full;
12
10
  this.major = full.split('.')[0];
@@ -14,8 +12,7 @@ class Version {
14
12
  this.patch = full.split('.').slice(2).join('.');
15
13
  }
16
14
  }
17
- exports.Version = Version;
18
15
  /**
19
16
  * Represents the version of @skyux/icons.
20
17
  */
21
- exports.VERSION = new Version('9.4.0');
18
+ export const VERSION = new Version('10.0.0');
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,69 @@
1
+ import { describe, expect, it } from 'vitest';
2
+ import { Version } from './version';
3
+ describe('Version', () => {
4
+ it('should set public properties correctly after construction', () => {
5
+ // Test basic version string
6
+ const version1 = new Version('1.2.3');
7
+ expect(version1.full).toBe('1.2.3');
8
+ expect(version1.major).toBe('1');
9
+ expect(version1.minor).toBe('2');
10
+ expect(version1.patch).toBe('3');
11
+ // Test version with additional patch components
12
+ const version2 = new Version('2.5.7-beta.1');
13
+ expect(version2.full).toBe('2.5.7-beta.1');
14
+ expect(version2.major).toBe('2');
15
+ expect(version2.minor).toBe('5');
16
+ expect(version2.patch).toBe('7-beta.1');
17
+ // Test version with multiple patch components
18
+ const version3 = new Version('10.15.20.alpha.2.build.123');
19
+ expect(version3.full).toBe('10.15.20.alpha.2.build.123');
20
+ expect(version3.major).toBe('10');
21
+ expect(version3.minor).toBe('15');
22
+ expect(version3.patch).toBe('20.alpha.2.build.123');
23
+ // Test single digit versions
24
+ const version4 = new Version('0.0.1');
25
+ expect(version4.full).toBe('0.0.1');
26
+ expect(version4.major).toBe('0');
27
+ expect(version4.minor).toBe('0');
28
+ expect(version4.patch).toBe('1');
29
+ // Test the placeholder version used in the module
30
+ const version5 = new Version('0.0.0-PLACEHOLDER');
31
+ expect(version5.full).toBe('0.0.0-PLACEHOLDER');
32
+ expect(version5.major).toBe('0');
33
+ expect(version5.minor).toBe('0');
34
+ expect(version5.patch).toBe('0-PLACEHOLDER');
35
+ });
36
+ it('should handle edge cases with version strings', () => {
37
+ // Test version with only major and minor (no patch)
38
+ const version1 = new Version('1.2');
39
+ expect(version1.full).toBe('1.2');
40
+ expect(version1.major).toBe('1');
41
+ expect(version1.minor).toBe('2');
42
+ expect(version1.patch).toBe('');
43
+ // Test version with only major
44
+ const version2 = new Version('5');
45
+ expect(version2.full).toBe('5');
46
+ expect(version2.major).toBe('5');
47
+ expect(version2.minor).toBe(undefined);
48
+ expect(version2.patch).toBe('');
49
+ // Test empty string (edge case)
50
+ const version3 = new Version('');
51
+ expect(version3.full).toBe('');
52
+ expect(version3.major).toBe('');
53
+ expect(version3.minor).toBe(undefined);
54
+ expect(version3.patch).toBe('');
55
+ });
56
+ it('should ensure properties exist and are accessible', () => {
57
+ const version = new Version('1.2.3');
58
+ // Verify all public properties are accessible
59
+ expect(version).toHaveProperty('full');
60
+ expect(version).toHaveProperty('major');
61
+ expect(version).toHaveProperty('minor');
62
+ expect(version).toHaveProperty('patch');
63
+ // Verify properties have the correct types
64
+ expect(typeof version.full).toBe('string');
65
+ expect(typeof version.major).toBe('string');
66
+ expect(typeof version.minor).toBe('string');
67
+ expect(typeof version.patch).toBe('string');
68
+ });
69
+ });
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@skyux/icons",
3
- "version": "9.4.0",
3
+ "version": "10.0.0",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
- "description": "A glyph font and stylesheet for displaying SKY UX icons.",
6
+ "description": "A sprite map for SKY UX SVG icons.",
7
7
  "scripts": {
8
8
  "build": "rimraf dist && node ./scripts/prepare-package.mjs",
9
9
  "test": "eslint module --ext .ts && vitest run --coverage",
@@ -83,12 +83,12 @@
83
83
  "@fluentui/svg-icons": "1.1.305",
84
84
  "@ryansonshine/commitizen": "4.2.8",
85
85
  "@ryansonshine/cz-conventional-changelog": "3.3.4",
86
- "@skyux/dev-infra-private": "github:blackbaud/skyux-dev-infra-private-builds#12.0.0-alpha.3",
86
+ "@skyux/dev-infra-private": "github:blackbaud/skyux-dev-infra-private-builds#12.0.0-alpha.10",
87
87
  "@trivago/prettier-plugin-sort-imports": "4.3.0",
88
88
  "@typescript-eslint/eslint-plugin": "6.20.0",
89
89
  "@typescript-eslint/parser": "6.20.0",
90
90
  "@vitest/coverage-v8": "3.1.4",
91
- "clean-css": "5.3.3",
91
+ "@xmldom/xmldom": "0.8.11",
92
92
  "cross-spawn": "7.0.6",
93
93
  "eslint": "8.57.0",
94
94
  "eslint-config-prettier": "9.1.0",
@@ -1,85 +0,0 @@
1
- /*
2
- Animation example, for spinners
3
- */
4
- .animate-spin {
5
- -moz-animation: spin 2s infinite linear;
6
- -o-animation: spin 2s infinite linear;
7
- -webkit-animation: spin 2s infinite linear;
8
- animation: spin 2s infinite linear;
9
- display: inline-block;
10
- }
11
- @-moz-keyframes spin {
12
- 0% {
13
- -moz-transform: rotate(0deg);
14
- -o-transform: rotate(0deg);
15
- -webkit-transform: rotate(0deg);
16
- transform: rotate(0deg);
17
- }
18
-
19
- 100% {
20
- -moz-transform: rotate(359deg);
21
- -o-transform: rotate(359deg);
22
- -webkit-transform: rotate(359deg);
23
- transform: rotate(359deg);
24
- }
25
- }
26
- @-webkit-keyframes spin {
27
- 0% {
28
- -moz-transform: rotate(0deg);
29
- -o-transform: rotate(0deg);
30
- -webkit-transform: rotate(0deg);
31
- transform: rotate(0deg);
32
- }
33
-
34
- 100% {
35
- -moz-transform: rotate(359deg);
36
- -o-transform: rotate(359deg);
37
- -webkit-transform: rotate(359deg);
38
- transform: rotate(359deg);
39
- }
40
- }
41
- @-o-keyframes spin {
42
- 0% {
43
- -moz-transform: rotate(0deg);
44
- -o-transform: rotate(0deg);
45
- -webkit-transform: rotate(0deg);
46
- transform: rotate(0deg);
47
- }
48
-
49
- 100% {
50
- -moz-transform: rotate(359deg);
51
- -o-transform: rotate(359deg);
52
- -webkit-transform: rotate(359deg);
53
- transform: rotate(359deg);
54
- }
55
- }
56
- @-ms-keyframes spin {
57
- 0% {
58
- -moz-transform: rotate(0deg);
59
- -o-transform: rotate(0deg);
60
- -webkit-transform: rotate(0deg);
61
- transform: rotate(0deg);
62
- }
63
-
64
- 100% {
65
- -moz-transform: rotate(359deg);
66
- -o-transform: rotate(359deg);
67
- -webkit-transform: rotate(359deg);
68
- transform: rotate(359deg);
69
- }
70
- }
71
- @keyframes spin {
72
- 0% {
73
- -moz-transform: rotate(0deg);
74
- -o-transform: rotate(0deg);
75
- -webkit-transform: rotate(0deg);
76
- transform: rotate(0deg);
77
- }
78
-
79
- 100% {
80
- -moz-transform: rotate(359deg);
81
- -o-transform: rotate(359deg);
82
- -webkit-transform: rotate(359deg);
83
- transform: rotate(359deg);
84
- }
85
- }
@@ -1 +0,0 @@
1
- .animate-spin{-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;display:inline-block}@-moz-keyframes spin{0%{-moz-transform:rotate(0);-o-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-moz-transform:rotate(0);-o-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes spin{0%{-moz-transform:rotate(0);-o-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spin{0%{-moz-transform:rotate(0);-o-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-moz-transform:rotate(0);-o-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}
@@ -1,192 +0,0 @@
1
-
2
- .sky-i-house-solid:before { content: '\e800'; } /* '' */
3
- .sky-i-calendar:before { content: '\e801'; } /* '' */
4
- .sky-i-form-line:before { content: '\e802'; } /* '' */
5
- .sky-i-clock:before { content: '\e803'; } /* '' */
6
- .sky-i-filter-solid:before { content: '\e804'; } /* '' */
7
- .sky-i-sort:before { content: '\e805'; } /* '' */
8
- .sky-i-columns:before { content: '\e806'; } /* '' */
9
- .sky-i-help-solid:before { content: '\e807'; } /* '' */
10
- .sky-i-copy-to-clipboard-line:before { content: '\e808'; } /* '' */
11
- .sky-i-edit-solid:before { content: '\e809'; } /* '' */
12
- .sky-i-check:before { content: '\e80a'; } /* '' */
13
- .sky-i-chevron-right:before { content: '\e80b'; } /* '' */
14
- .sky-i-chevron-up:before { content: '\e80c'; } /* '' */
15
- .sky-i-ban-line:before { content: '\e80d'; } /* '' */
16
- .sky-i-business-line:before { content: '\e80e'; } /* '' */
17
- .sky-i-chevron-down:before { content: '\e80f'; } /* '' */
18
- .sky-i-number-list-line:before { content: '\e810'; } /* '' */
19
- .sky-i-font-size-line:before { content: '\e811'; } /* '' */
20
- .sky-i-add:before { content: '\e812'; } /* '' */
21
- .sky-i-chevron-left:before { content: '\e813'; } /* '' */
22
- .sky-i-search:before { content: '\e814'; } /* '' */
23
- .sky-i-highlighter-line:before { content: '\e815'; } /* '' */
24
- .sky-i-subscript-line:before { content: '\e816'; } /* '' */
25
- .sky-i-xls-file-line:before { content: '\e817'; } /* '' */
26
- .sky-i-close:before { content: '\e818'; } /* '' */
27
- .sky-i-folder-open-solid:before { content: '\e819'; } /* '' */
28
- .sky-i-pdf-file-line:before { content: '\e81a'; } /* '' */
29
- .sky-i-calendar-solid:before { content: '\e81b'; } /* '' */
30
- .sky-i-clock-solid:before { content: '\e81c'; } /* '' */
31
- .sky-i-pencil-solid:before { content: '\e81d'; } /* '' */
32
- .sky-i-trash-solid:before { content: '\e81e'; } /* '' */
33
- .sky-i-house-line:before { content: '\e81f'; } /* '' */
34
- .sky-i-edit:before { content: '\e820'; } /* '' */
35
- .sky-i-users-line:before { content: '\e821'; } /* '' */
36
- .sky-i-users-solid:before { content: '\e822'; } /* '' */
37
- .sky-i-ellipsis:before { content: '\e823'; } /* '' */
38
- .sky-i-dollar-bill-line:before { content: '\e824'; } /* '' */
39
- .sky-i-dollar-bill-solid:before { content: '\e825'; } /* '' */
40
- .sky-i-cog-line:before { content: '\e826'; } /* '' */
41
- .sky-i-cog-solid:before { content: '\e827'; } /* '' */
42
- .sky-i-bell-line:before { content: '\e828'; } /* '' */
43
- .sky-i-bell-solid:before { content: '\e829'; } /* '' */
44
- .sky-i-help-line:before { content: '\e82a'; } /* '' */
45
- .sky-i-filter:before { content: '\e82b'; } /* '' */
46
- .sky-i-double-chevron-left:before { content: '\e82c'; } /* '' */
47
- .sky-i-double-chevron-right:before { content: '\e82d'; } /* '' */
48
- .sky-i-doc-file-line:before { content: '\e82e'; } /* '' */
49
- .sky-i-trash-line:before { content: '\e82f'; } /* '' */
50
- .sky-i-pie-chart-line:before { content: '\e830'; } /* '' */
51
- .sky-i-donut-chart-line:before { content: '\e831'; } /* '' */
52
- .sky-i-share-line:before { content: '\e832'; } /* '' */
53
- .sky-i-envelope-line:before { content: '\e833'; } /* '' */
54
- .sky-i-envelope-solid:before { content: '\e834'; } /* '' */
55
- .sky-i-talk-bubbles-line:before { content: '\e835'; } /* '' */
56
- .sky-i-talk-bubbles-solid:before { content: '\e836'; } /* '' */
57
- .sky-i-copy-line:before { content: '\e837'; } /* '' */
58
- .sky-i-menu:before { content: '\e838'; } /* '' */
59
- .sky-i-printer-line:before { content: '\e839'; } /* '' */
60
- .sky-i-printer-solid:before { content: '\e83a'; } /* '' */
61
- .sky-i-credit-card-solid:before { content: '\e83b'; } /* '' */
62
- .sky-i-credit-card-line:before { content: '\e83c'; } /* '' */
63
- .sky-i-open:before { content: '\e83d'; } /* '' */
64
- .sky-i-pencil-line:before { content: '\e83e'; } /* '' */
65
- .sky-i-delete-line:before { content: '\e83f'; } /* '' */
66
- .sky-i-delete-solid:before { content: '\e840'; } /* '' */
67
- .sky-i-open-line:before { content: '\e841'; } /* '' */
68
- .sky-i-open-solid:before { content: '\e842'; } /* '' */
69
- .sky-i-notification-line:before { content: '\e843'; } /* '' */
70
- .sky-i-notification-solid:before { content: '\e844'; } /* '' */
71
- .sky-i-settings-solid:before { content: '\e845'; } /* '' */
72
- .sky-i-settings-line:before { content: '\e846'; } /* '' */
73
- .sky-i-money-solid:before { content: '\e847'; } /* '' */
74
- .sky-i-money-line:before { content: '\e848'; } /* '' */
75
- .sky-i-book-line:before { content: '\e849'; } /* '' */
76
- .sky-i-coin-bag-line:before { content: '\e84a'; } /* '' */
77
- .sky-i-wand-line:before { content: '\e84b'; } /* '' */
78
- .sky-i-bar-chart-line:before { content: '\e84c'; } /* '' */
79
- .sky-i-user-line:before { content: '\e84d'; } /* '' */
80
- .sky-i-align-left-text-line:before { content: '\e84e'; } /* '' */
81
- .sky-i-align-right-text-line:before { content: '\e84f'; } /* '' */
82
- .sky-i-center-text-line:before { content: '\e850'; } /* '' */
83
- .sky-i-list-line:before { content: '\e851'; } /* '' */
84
- .sky-i-note-line:before { content: '\e852'; } /* '' */
85
- .sky-i-link-line:before { content: '\e853'; } /* '' */
86
- .sky-i-tile-drag:before { content: '\e854'; } /* '' */
87
- .sky-i-trash:before { content: '\e855'; } /* '' */
88
- .sky-i-cloud-line:before { content: '\e856'; } /* '' */
89
- .sky-i-grid-view-line:before { content: '\e857'; } /* '' */
90
- .sky-i-map-marker-line:before { content: '\e858'; } /* '' */
91
- .sky-i-tag-line:before { content: '\e859'; } /* '' */
92
- .sky-i-save-line:before { content: '\e85a'; } /* '' */
93
- .sky-i-upload-line:before { content: '\e85b'; } /* '' */
94
- .sky-i-zoom-out-line:before { content: '\e85c'; } /* '' */
95
- .sky-i-zoom-in-line:before { content: '\e85d'; } /* '' */
96
- .sky-i-image-line:before { content: '\e85e'; } /* '' */
97
- .sky-i-bullet-list-line:before { content: '\e85f'; } /* '' */
98
- .sky-i-help-i:before { content: '\e860'; } /* '' */
99
- .sky-i-bold-line:before { content: '\e861'; } /* '' */
100
- .sky-i-triangle-solid:before { content: '\e862'; } /* '' */
101
- .sky-i-exclamation:before { content: '\e863'; } /* '' */
102
- .sky-i-circle-solid:before { content: '\e864'; } /* '' */
103
- .sky-i-italic-line:before { content: '\e865'; } /* '' */
104
- .sky-i-strikethrough-line:before { content: '\e866'; } /* '' */
105
- .sky-i-text-color-line:before { content: '\e867'; } /* '' */
106
- .sky-i-superscript-line:before { content: '\e868'; } /* '' */
107
- .sky-i-undo-line:before { content: '\e869'; } /* '' */
108
- .sky-i-underline-line:before { content: '\e86a'; } /* '' */
109
- .sky-i-justify-text-line:before { content: '\e86b'; } /* '' */
110
- .sky-i-unlink-line:before { content: '\e86c'; } /* '' */
111
- .sky-i-file-line:before { content: '\e86d'; } /* '' */
112
- .sky-i-file-solid:before { content: '\e86e'; } /* '' */
113
- .sky-i-thumbs-up-solid:before { content: '\e86f'; } /* '' */
114
- .sky-i-thumbs-up-line:before { content: '\e870'; } /* '' */
115
- .sky-i-phone-solid:before { content: '\e871'; } /* '' */
116
- .sky-i-phone-line:before { content: '\e872'; } /* '' */
117
- .sky-i-headline-chart-line:before { content: '\e873'; } /* '' */
118
- .sky-i-table-line:before { content: '\e874'; } /* '' */
119
- .sky-i-bar-chart-line-1:before { content: '\e875'; } /* '' */
120
- .sky-i-horizontal-bar-chart-line:before { content: '\e876'; } /* '' */
121
- .sky-i-line-chart-line:before { content: '\e877'; } /* '' */
122
- .sky-i-bullet-chart-line:before { content: '\e878'; } /* '' */
123
- .sky-i-redo-line:before { content: '\e879'; } /* '' */
124
- .sky-i-arrow-up-line:before { content: '\e87a'; } /* '' */
125
- .sky-i-align-image-center-line:before { content: '\e87b'; } /* '' */
126
- .sky-i-align-image-left-line:before { content: '\e87c'; } /* '' */
127
- .sky-i-align-image-right-line:before { content: '\e87d'; } /* '' */
128
- .sky-i-divider-line:before { content: '\e87e'; } /* '' */
129
- .sky-i-social-share-line:before { content: '\e87f'; } /* '' */
130
- .sky-i-indent-line:before { content: '\e880'; } /* '' */
131
- .sky-i-outdent-line:before { content: '\e881'; } /* '' */
132
- .sky-i-download-line:before { content: '\e882'; } /* '' */
133
- .sky-i-bb-diamond:before { content: '\e883'; } /* '' */
134
- .sky-i-attach-line:before { content: '\e886'; } /* '' */
135
- .sky-i-bars-2-line:before { content: '\e887'; } /* '' */
136
- .sky-i-cog-2-line:before { content: '\e888'; } /* '' */
137
- .sky-i-cog-2-solid:before { content: '\e889'; } /* '' */
138
- .sky-i-collapse-2-line:before { content: '\e88a'; } /* '' */
139
- .sky-i-database-2-line:before { content: '\e88b'; } /* '' */
140
- .sky-i-database-2-solid:before { content: '\e88c'; } /* '' */
141
- .sky-i-form-2-solid:before { content: '\e88d'; } /* '' */
142
- .sky-i-expand-2-line:before { content: '\e88e'; } /* '' */
143
- .sky-i-form-2-line:before { content: '\e88f'; } /* '' */
144
- .sky-i-lock-2-line:before { content: '\e890'; } /* '' */
145
- .sky-i-lock-2-solid:before { content: '\e891'; } /* '' */
146
- .sky-i-money-2-line:before { content: '\e892'; } /* '' */
147
- .sky-i-money-2-solid:before { content: '\e893'; } /* '' */
148
- .sky-i-notifications-2-line:before { content: '\e894'; } /* '' */
149
- .sky-i-notifications-2-solid:before { content: '\e895'; } /* '' */
150
- .sky-i-bb-diamond-2-line:before { content: '\e896'; } /* '' */
151
- .sky-i-bb-diamond-2-solid:before { content: '\e897'; } /* '' */
152
- .sky-i-star:before { content: '\e89a'; } /* '' */
153
- .sky-i-image-file-line:before { content: '\e89b'; } /* '' */
154
- .sky-i-text-file-line:before { content: '\e89c'; } /* '' */
155
- .sky-i-video-file-line:before { content: '\e89d'; } /* '' */
156
- .sky-i-double-chevron-up:before { content: '\e89e'; } /* '' */
157
- .sky-i-double-chevron-down:before { content: '\e89f'; } /* '' */
158
- .sky-i-__do_not_delete:before { content: '\e8a0'; } /* '' */
159
- .sky-i-audio-file-line:before { content: '\e8a1'; } /* '' */
160
- .sky-i-code-file-line:before { content: '\e8a2'; } /* '' */
161
- .sky-i-archive-file-line:before { content: '\e8a3'; } /* '' */
162
- .sky-i-ppt-file-line:before { content: '\e8a4'; } /* '' */
163
- .sky-i-bluetooth-on-line-1:before { content: '\e8a5'; } /* '' */
164
- .sky-i-phone-action-credit-card-line-1:before { content: '\e8a6'; } /* '' */
165
- .sky-i-online-learning-2-line:before { content: '\e8a7'; } /* '' */
166
- .sky-i-donation-charity-hand-heart-2-line:before { content: '\e8a8'; } /* '' */
167
- .sky-i-workflow-teamwork-user-2-line:before { content: '\e8a9'; } /* '' */
168
- .sky-i-phone-action-credit-card-line:before { content: '\e8aa'; } /* '' */
169
- .sky-i-bluetooth-on-line:before { content: '\e8ab'; } /* '' */
170
- .sky-i-donation-charity-hand-heart-2-solid:before { content: '\e8af'; } /* '' */
171
- .sky-i-online-learning-2-solid:before { content: '\e8b0'; } /* '' */
172
- .sky-i-workflow-teamwork-user-2-solid:before { content: '\e8b1'; } /* '' */
173
- .sky-i-saving-bank-2-line:before { content: '\e8b2'; } /* '' */
174
- .sky-i-accounting-invoice-mail-2-line:before { content: '\e8b3'; } /* '' */
175
- .sky-i-saving-bank-2-solid:before { content: '\e8b4'; } /* '' */
176
- .sky-i-general-ledger-2-solid:before { content: '\e8b5'; } /* '' */
177
- .sky-i-cash-payment-bill-2-solid:before { content: '\e8b6'; } /* '' */
178
- .sky-i-cash-payment-bill-2-line:before { content: '\e8b7'; } /* '' */
179
- .sky-i-general-ledger-2-line:before { content: '\e8b8'; } /* '' */
180
- .sky-i-accounting-invoice-mail-2-solid:before { content: '\e8bb'; } /* '' */
181
- .sky-i-hammer-wrench-2-solid:before { content: '\e8bc'; } /* '' */
182
- .sky-i-hammer-wrench-2-line:before { content: '\e8bd'; } /* '' */
183
- .sky-i-open-new-tab-line:before { content: '\e8bf'; } /* '' */
184
- .sky-i-sparkles-2-solid:before { content: '\e958'; } /* '' */
185
- .sky-i-sparkles-2-line:before { content: '\e959'; } /* '' */
186
- .sky-i-workflow-teammate-circle-2-line:before { content: '\e97a'; } /* '' */
187
- .sky-i-workflow-teammate-circle-2-solid:before { content: '\e97b'; } /* '' */
188
- .sky-i-hide:before { content: '\e97d'; } /* '' */
189
- .sky-i-show:before { content: '\e97e'; } /* '' */
190
- .sky-i-xls-file-line-depricated:before { content: '\e997'; } /* '' */
191
- .sky-i-doc-file-line-depreciated:before { content: '\e998'; } /* '' */
192
- .sky-i-pdf-file-line-deprecated:before { content: '\e999'; } /* '' */
@@ -1 +0,0 @@
1
- .sky-i-house-solid:before{content:'\e800'}.sky-i-calendar:before{content:'\e801'}.sky-i-form-line:before{content:'\e802'}.sky-i-clock:before{content:'\e803'}.sky-i-filter-solid:before{content:'\e804'}.sky-i-sort:before{content:'\e805'}.sky-i-columns:before{content:'\e806'}.sky-i-help-solid:before{content:'\e807'}.sky-i-copy-to-clipboard-line:before{content:'\e808'}.sky-i-edit-solid:before{content:'\e809'}.sky-i-check:before{content:'\e80a'}.sky-i-chevron-right:before{content:'\e80b'}.sky-i-chevron-up:before{content:'\e80c'}.sky-i-ban-line:before{content:'\e80d'}.sky-i-business-line:before{content:'\e80e'}.sky-i-chevron-down:before{content:'\e80f'}.sky-i-number-list-line:before{content:'\e810'}.sky-i-font-size-line:before{content:'\e811'}.sky-i-add:before{content:'\e812'}.sky-i-chevron-left:before{content:'\e813'}.sky-i-search:before{content:'\e814'}.sky-i-highlighter-line:before{content:'\e815'}.sky-i-subscript-line:before{content:'\e816'}.sky-i-xls-file-line:before{content:'\e817'}.sky-i-close:before{content:'\e818'}.sky-i-folder-open-solid:before{content:'\e819'}.sky-i-pdf-file-line:before{content:'\e81a'}.sky-i-calendar-solid:before{content:'\e81b'}.sky-i-clock-solid:before{content:'\e81c'}.sky-i-pencil-solid:before{content:'\e81d'}.sky-i-trash-solid:before{content:'\e81e'}.sky-i-house-line:before{content:'\e81f'}.sky-i-edit:before{content:'\e820'}.sky-i-users-line:before{content:'\e821'}.sky-i-users-solid:before{content:'\e822'}.sky-i-ellipsis:before{content:'\e823'}.sky-i-dollar-bill-line:before{content:'\e824'}.sky-i-dollar-bill-solid:before{content:'\e825'}.sky-i-cog-line:before{content:'\e826'}.sky-i-cog-solid:before{content:'\e827'}.sky-i-bell-line:before{content:'\e828'}.sky-i-bell-solid:before{content:'\e829'}.sky-i-help-line:before{content:'\e82a'}.sky-i-filter:before{content:'\e82b'}.sky-i-double-chevron-left:before{content:'\e82c'}.sky-i-double-chevron-right:before{content:'\e82d'}.sky-i-doc-file-line:before{content:'\e82e'}.sky-i-trash-line:before{content:'\e82f'}.sky-i-pie-chart-line:before{content:'\e830'}.sky-i-donut-chart-line:before{content:'\e831'}.sky-i-share-line:before{content:'\e832'}.sky-i-envelope-line:before{content:'\e833'}.sky-i-envelope-solid:before{content:'\e834'}.sky-i-talk-bubbles-line:before{content:'\e835'}.sky-i-talk-bubbles-solid:before{content:'\e836'}.sky-i-copy-line:before{content:'\e837'}.sky-i-menu:before{content:'\e838'}.sky-i-printer-line:before{content:'\e839'}.sky-i-printer-solid:before{content:'\e83a'}.sky-i-credit-card-solid:before{content:'\e83b'}.sky-i-credit-card-line:before{content:'\e83c'}.sky-i-open:before{content:'\e83d'}.sky-i-pencil-line:before{content:'\e83e'}.sky-i-delete-line:before{content:'\e83f'}.sky-i-delete-solid:before{content:'\e840'}.sky-i-open-line:before{content:'\e841'}.sky-i-open-solid:before{content:'\e842'}.sky-i-notification-line:before{content:'\e843'}.sky-i-notification-solid:before{content:'\e844'}.sky-i-settings-solid:before{content:'\e845'}.sky-i-settings-line:before{content:'\e846'}.sky-i-money-solid:before{content:'\e847'}.sky-i-money-line:before{content:'\e848'}.sky-i-book-line:before{content:'\e849'}.sky-i-coin-bag-line:before{content:'\e84a'}.sky-i-wand-line:before{content:'\e84b'}.sky-i-bar-chart-line:before{content:'\e84c'}.sky-i-user-line:before{content:'\e84d'}.sky-i-align-left-text-line:before{content:'\e84e'}.sky-i-align-right-text-line:before{content:'\e84f'}.sky-i-center-text-line:before{content:'\e850'}.sky-i-list-line:before{content:'\e851'}.sky-i-note-line:before{content:'\e852'}.sky-i-link-line:before{content:'\e853'}.sky-i-tile-drag:before{content:'\e854'}.sky-i-trash:before{content:'\e855'}.sky-i-cloud-line:before{content:'\e856'}.sky-i-grid-view-line:before{content:'\e857'}.sky-i-map-marker-line:before{content:'\e858'}.sky-i-tag-line:before{content:'\e859'}.sky-i-save-line:before{content:'\e85a'}.sky-i-upload-line:before{content:'\e85b'}.sky-i-zoom-out-line:before{content:'\e85c'}.sky-i-zoom-in-line:before{content:'\e85d'}.sky-i-image-line:before{content:'\e85e'}.sky-i-bullet-list-line:before{content:'\e85f'}.sky-i-help-i:before{content:'\e860'}.sky-i-bold-line:before{content:'\e861'}.sky-i-triangle-solid:before{content:'\e862'}.sky-i-exclamation:before{content:'\e863'}.sky-i-circle-solid:before{content:'\e864'}.sky-i-italic-line:before{content:'\e865'}.sky-i-strikethrough-line:before{content:'\e866'}.sky-i-text-color-line:before{content:'\e867'}.sky-i-superscript-line:before{content:'\e868'}.sky-i-undo-line:before{content:'\e869'}.sky-i-underline-line:before{content:'\e86a'}.sky-i-justify-text-line:before{content:'\e86b'}.sky-i-unlink-line:before{content:'\e86c'}.sky-i-file-line:before{content:'\e86d'}.sky-i-file-solid:before{content:'\e86e'}.sky-i-thumbs-up-solid:before{content:'\e86f'}.sky-i-thumbs-up-line:before{content:'\e870'}.sky-i-phone-solid:before{content:'\e871'}.sky-i-phone-line:before{content:'\e872'}.sky-i-headline-chart-line:before{content:'\e873'}.sky-i-table-line:before{content:'\e874'}.sky-i-bar-chart-line-1:before{content:'\e875'}.sky-i-horizontal-bar-chart-line:before{content:'\e876'}.sky-i-line-chart-line:before{content:'\e877'}.sky-i-bullet-chart-line:before{content:'\e878'}.sky-i-redo-line:before{content:'\e879'}.sky-i-arrow-up-line:before{content:'\e87a'}.sky-i-align-image-center-line:before{content:'\e87b'}.sky-i-align-image-left-line:before{content:'\e87c'}.sky-i-align-image-right-line:before{content:'\e87d'}.sky-i-divider-line:before{content:'\e87e'}.sky-i-social-share-line:before{content:'\e87f'}.sky-i-indent-line:before{content:'\e880'}.sky-i-outdent-line:before{content:'\e881'}.sky-i-download-line:before{content:'\e882'}.sky-i-bb-diamond:before{content:'\e883'}.sky-i-attach-line:before{content:'\e886'}.sky-i-bars-2-line:before{content:'\e887'}.sky-i-cog-2-line:before{content:'\e888'}.sky-i-cog-2-solid:before{content:'\e889'}.sky-i-collapse-2-line:before{content:'\e88a'}.sky-i-database-2-line:before{content:'\e88b'}.sky-i-database-2-solid:before{content:'\e88c'}.sky-i-form-2-solid:before{content:'\e88d'}.sky-i-expand-2-line:before{content:'\e88e'}.sky-i-form-2-line:before{content:'\e88f'}.sky-i-lock-2-line:before{content:'\e890'}.sky-i-lock-2-solid:before{content:'\e891'}.sky-i-money-2-line:before{content:'\e892'}.sky-i-money-2-solid:before{content:'\e893'}.sky-i-notifications-2-line:before{content:'\e894'}.sky-i-notifications-2-solid:before{content:'\e895'}.sky-i-bb-diamond-2-line:before{content:'\e896'}.sky-i-bb-diamond-2-solid:before{content:'\e897'}.sky-i-star:before{content:'\e89a'}.sky-i-image-file-line:before{content:'\e89b'}.sky-i-text-file-line:before{content:'\e89c'}.sky-i-video-file-line:before{content:'\e89d'}.sky-i-double-chevron-up:before{content:'\e89e'}.sky-i-double-chevron-down:before{content:'\e89f'}.sky-i-__do_not_delete:before{content:'\e8a0'}.sky-i-audio-file-line:before{content:'\e8a1'}.sky-i-code-file-line:before{content:'\e8a2'}.sky-i-archive-file-line:before{content:'\e8a3'}.sky-i-ppt-file-line:before{content:'\e8a4'}.sky-i-bluetooth-on-line-1:before{content:'\e8a5'}.sky-i-phone-action-credit-card-line-1:before{content:'\e8a6'}.sky-i-online-learning-2-line:before{content:'\e8a7'}.sky-i-donation-charity-hand-heart-2-line:before{content:'\e8a8'}.sky-i-workflow-teamwork-user-2-line:before{content:'\e8a9'}.sky-i-phone-action-credit-card-line:before{content:'\e8aa'}.sky-i-bluetooth-on-line:before{content:'\e8ab'}.sky-i-donation-charity-hand-heart-2-solid:before{content:'\e8af'}.sky-i-online-learning-2-solid:before{content:'\e8b0'}.sky-i-workflow-teamwork-user-2-solid:before{content:'\e8b1'}.sky-i-saving-bank-2-line:before{content:'\e8b2'}.sky-i-accounting-invoice-mail-2-line:before{content:'\e8b3'}.sky-i-saving-bank-2-solid:before{content:'\e8b4'}.sky-i-general-ledger-2-solid:before{content:'\e8b5'}.sky-i-cash-payment-bill-2-solid:before{content:'\e8b6'}.sky-i-cash-payment-bill-2-line:before{content:'\e8b7'}.sky-i-general-ledger-2-line:before{content:'\e8b8'}.sky-i-accounting-invoice-mail-2-solid:before{content:'\e8bb'}.sky-i-hammer-wrench-2-solid:before{content:'\e8bc'}.sky-i-hammer-wrench-2-line:before{content:'\e8bd'}.sky-i-open-new-tab-line:before{content:'\e8bf'}.sky-i-sparkles-2-solid:before{content:'\e958'}.sky-i-sparkles-2-line:before{content:'\e959'}.sky-i-workflow-teammate-circle-2-line:before{content:'\e97a'}.sky-i-workflow-teammate-circle-2-solid:before{content:'\e97b'}.sky-i-hide:before{content:'\e97d'}.sky-i-show:before{content:'\e97e'}.sky-i-xls-file-line-depricated:before{content:'\e997'}.sky-i-doc-file-line-depreciated:before{content:'\e998'}.sky-i-pdf-file-line-deprecated:before{content:'\e999'}