@digital-ai/dot-illustrations 2.0.2 → 2.0.4
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/demo/script.js +3 -0
- package/illustrations/dark/global/add-new-grid.svg +57 -57
- package/illustrations/dark/global/add-new.svg +11 -11
- package/illustrations/dark/global/add-team.svg +24 -24
- package/illustrations/dark/global/add-user.svg +13 -13
- package/illustrations/dark/global/assets.svg +31 -40
- package/illustrations/dark/global/chart.svg +19 -19
- package/illustrations/dark/global/community.svg +36 -36
- package/illustrations/dark/global/custom-dashboards.svg +46 -0
- package/illustrations/dark/global/dependency-down.svg +28 -21
- package/illustrations/dark/global/dependency-up.svg +28 -21
- package/illustrations/dark/global/disconnected.svg +16 -16
- package/illustrations/dark/global/done.svg +12 -12
- package/illustrations/dark/global/dora-metrics-circle.svg +54 -0
- package/illustrations/dark/global/empty.svg +14 -14
- package/illustrations/dark/global/favorite.svg +19 -19
- package/illustrations/dark/global/features.svg +56 -61
- package/illustrations/dark/global/launch.svg +46 -46
- package/illustrations/dark/global/no-files.svg +11 -11
- package/illustrations/dark/global/nothing-defined.svg +12 -12
- package/illustrations/dark/global/password-token.svg +20 -15
- package/illustrations/dark/global/reports.svg +44 -44
- package/illustrations/dark/global/survey.svg +18 -18
- package/illustrations/dark/global/user.svg +8 -8
- package/illustrations/dark/global/work-item.svg +18 -23
- package/illustrations/dark/global/workflows-main.svg +64 -0
- package/illustrations/light/global/add-new-grid.svg +37 -37
- package/illustrations/light/global/add-new.svg +9 -9
- package/illustrations/light/global/add-team.svg +24 -24
- package/illustrations/light/global/add-user.svg +11 -11
- package/illustrations/light/global/assets.svg +29 -37
- package/illustrations/light/global/chart.svg +16 -16
- package/illustrations/light/global/community.svg +34 -34
- package/illustrations/light/global/custom-dashboards.svg +46 -0
- package/illustrations/light/global/dependency-down.svg +22 -15
- package/illustrations/light/global/dependency-up.svg +22 -15
- package/illustrations/light/global/disconnected.svg +14 -14
- package/illustrations/light/global/done.svg +10 -10
- package/illustrations/light/global/dora-metrics-circle.svg +54 -0
- package/illustrations/light/global/empty.svg +12 -12
- package/illustrations/light/global/favorite.svg +17 -17
- package/illustrations/light/global/features.svg +41 -46
- package/illustrations/light/global/launch.svg +33 -33
- package/illustrations/light/global/no-files.svg +8 -8
- package/illustrations/light/global/nothing-defined.svg +10 -10
- package/illustrations/light/global/password-token.svg +13 -13
- package/illustrations/light/global/reports.svg +36 -36
- package/illustrations/light/global/survey.svg +13 -13
- package/illustrations/light/global/user.svg +8 -8
- package/illustrations/light/global/work-item.svg +10 -15
- package/illustrations/light/global/workflows-main.svg +64 -0
- package/index.css +24 -0
- package/package.json +1 -1
package/index.css
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
/*Path: --------- './illustrations/light/global/*.svg ----- light */
|
|
3
3
|
/*Path: --------- './illustrations/dark/global/*.svg ------ dark */
|
|
4
4
|
|
|
5
|
+
.dot-illustration img.workflows-main.light {
|
|
6
|
+
content: url('./illustrations/light/global/workflows-main.svg');
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.dot-illustration img.workflows-main.dark {
|
|
10
|
+
content: url('./illustrations/dark/global/workflows-main.svg');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.dot-illustration img.dora-metrics-circle.light {
|
|
14
|
+
content: url('./illustrations/light/global/dora-metrics-circle.svg');
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.dot-illustration img.dora-metrics-circle.dark {
|
|
18
|
+
content: url('./illustrations/dark/global/dora-metrics-circle.svg');
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.dot-illustration img.custom-dashboards.light {
|
|
22
|
+
content: url('./illustrations/light/global/custom-dashboards.svg');
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.dot-illustration img.custom-dashboards.dark {
|
|
26
|
+
content: url('./illustrations/dark/global/custom-dashboards.svg');
|
|
27
|
+
}
|
|
28
|
+
|
|
5
29
|
.dot-illustration img.dependency-up.light {
|
|
6
30
|
content: url('./illustrations/light/global/dependency-up.svg');
|
|
7
31
|
}
|