@digital-ai/dot-illustrations 1.0.0 → 1.0.1
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/{workflows → .github/workflows}/publish.yml +4 -4
- package/Agility-illustrations/Dark/global/disconnected.svg +20 -0
- package/Agility-illustrations/Dark/global/nothing-defined.svg +13 -0
- package/Agility-illustrations/Dark/processes/assets.svg +40 -0
- package/Agility-illustrations/Dark/processes/work-item.svg +26 -0
- package/Agility-illustrations/Light/global/disconnected.svg +20 -0
- package/Agility-illustrations/Light/global/features.svg +150 -0
- package/Agility-illustrations/Light/global/launch.svg +17 -0
- package/Agility-illustrations/Light/global/nothing-defined.svg +13 -0
- package/Agility-illustrations/Light/global/survey.svg +23 -0
- package/Agility-illustrations/Light/processes/assets.svg +40 -0
- package/Agility-illustrations/Light/processes/work-item.svg +26 -0
- package/Dashboards/Light/Release/Custom.svg +33 -0
- package/Dashboards/Light/Release/DORA mertrics.svg +26 -0
- package/Dashboards/Light/Release/Onboarding plan and progress.svg +24 -0
- package/Dashboards/Light/Release/Release dependency dashboard.svg +30 -0
- package/Dashboards/Light/Release/Release executive overview.svg +31 -0
- package/Dashboards/Light/Release/Release late task and its impact.svg +17 -0
- package/Dashboards/Light/Release/Release task open work analysis.svg +28 -0
- package/Dashboards/Light/Release/Workflow adoption and usage patterns.svg +35 -0
- package/Dot-illustrations/Dark/global/disconnected.svg +20 -0
- package/Dot-illustrations/Dark/global/features.svg +150 -0
- package/Dot-illustrations/Dark/global/launch.svg +17 -0
- package/Dot-illustrations/Dark/global/nothing-defined.svg +13 -0
- package/Dot-illustrations/Dark/global/survey.svg +23 -0
- package/Dot-illustrations/Dark/processes/assets.svg +40 -0
- package/Dot-illustrations/Dark/processes/work-item.svg +26 -0
- package/Dot-illustrations/Light/global/disconnected.svg +20 -0
- package/Dot-illustrations/Light/global/features.svg +150 -0
- package/Dot-illustrations/Light/global/launch.svg +17 -0
- package/Dot-illustrations/Light/global/nothing-defined.svg +13 -0
- package/Dot-illustrations/Light/global/survey.svg +23 -0
- package/Dot-illustrations/Light/processes/assets.svg +40 -0
- package/Dot-illustrations/Light/processes/work-item.svg +26 -0
- package/README.md +72 -0
- package/demo/demo.css +60 -0
- package/demo/index.html +110 -0
- package/demo/script.js +16 -0
- package/index.css +152 -0
- package/package.json +1 -1
package/index.css
CHANGED
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
.dot-illustration {
|
|
2
|
+
align-items: center;
|
|
3
|
+
box-sizing: content-box;
|
|
4
|
+
display: flex;
|
|
5
|
+
/* allows flex items to display inline */
|
|
6
|
+
float: left;
|
|
7
|
+
font-size: 20px;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/* Agility Light Illustrations */
|
|
12
|
+
|
|
13
|
+
.dot-illustration img.illustration-agility-global-disconnected {
|
|
14
|
+
content: url('./Agility-illustrations/Light/global/disconnected.svg');
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.dot-illustration img.illustration-agility-global-features {
|
|
18
|
+
content: url('./Agility-illustrations/Light/global/features.svg');
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.dot-illustration img.illustration-agility-global-launch {
|
|
22
|
+
content: url('./Agility-illustrations/Light/global/launch.svg');
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.dot-illustration img.illustration-agility-global-nothing-defined {
|
|
26
|
+
content: url('./Agility-illustrations/Light/global/nothing-defined.svg');
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.dot-illustration img.illustration-agility-global-survey {
|
|
30
|
+
content: url('./Agility-illustrations/Light/global/survey.svg');
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.dot-illustration img.illustration-agility-processes-assets {
|
|
34
|
+
content: url('./Agility-illustrations/Light/processes/assets.svg');
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.dot-illustration img.illustration-agility-processes-work-item {
|
|
38
|
+
content: url('./Agility-illustrations/Light/processes/work-item.svg');
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
/* Agility Dark Illustrations */
|
|
43
|
+
|
|
44
|
+
.dot-illustration img.illustration-agility-global-disconnected.dark-theme {
|
|
45
|
+
content: url('./Agility-illustrations/Dark/global/disconnected.svg');
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.dot-illustration img.illustration-agility-global-nothing-defined.dark-theme {
|
|
49
|
+
content: url('./Agility-illustrations/Dark/global/nothing-defined.svg');
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.dot-illustration img.illustration-agility-processes-assets.dark-theme {
|
|
53
|
+
content: url('./Agility-illustrations/Dark/processes/assets.svg');
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.dot-illustration img.illustration-agility-processes-work-item.dark-theme {
|
|
57
|
+
content: url('./Agility-illustrations/Dark/processes/work-item.svg');
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/* Dashboard Light Illustrations */
|
|
61
|
+
|
|
62
|
+
.dot-illustration img.illustration-dashboards-custom {
|
|
63
|
+
content: url('./Dashboards/Light/Release/Custom.svg');
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.dot-illustration img.illustration-dashboards-dora {
|
|
67
|
+
content: url('./Dashboards/Light/Release/DORA\ mertrics.svg');
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.dot-illustration img.illustration-dashboards-onboarding {
|
|
71
|
+
content: url('./Dashboards/Light/Release/Onboarding\ plan\ and\ progress.svg');
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.dot-illustration img.illustration-dashboards-release-dependency {
|
|
75
|
+
content: url('./Dashboards/Light/Release/Release\ dependency\ dashboard.svg');
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.dot-illustration img.illustration-dashboards-release-executive-overview {
|
|
79
|
+
content: url('./Dashboards/Light/Release/Release\ executive\ overview.svg');
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.dot-illustration img.illustration-dashboards-release-late-task {
|
|
83
|
+
content: url('./Dashboards/Light/Release/Release\ late\ task\ and\ its\ impact.svg');
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.dot-illustration img.illustration-dashboards-release-open-task {
|
|
87
|
+
content: url('./Dashboards/Light/Release/Release\ task\ open\ work\ analysis.svg');
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.dot-illustration img.illustration-dashboards-workflow-adoption {
|
|
91
|
+
content: url('./Dashboards/Light/Release/Workflow\ adoption\ and\ usage\ patterns.svg');
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* Dot Light Illustrations */
|
|
95
|
+
|
|
96
|
+
.dot-illustration img.illustration-dot-global-disconnected {
|
|
97
|
+
content: url('./Dot-illustrations/Light/global/disconnected.svg');
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.dot-illustration img.illustration-dot-global-features {
|
|
101
|
+
content: url('./Dot-illustrations/Light/global/features.svg');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.dot-illustration img.illustration-dot-global-launch {
|
|
105
|
+
content: url('./Dot-illustrations/Light/global/launch.svg');
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.dot-illustration img.illustration-dot-global-nothing-defined {
|
|
109
|
+
content: url('./Dot-illustrations/Light/global/nothing-defined.svg');
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.dot-illustration img.illustration-dot-global-survey {
|
|
113
|
+
content: url('./Dot-illustrations/Light/global/survey.svg');
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.dot-illustration img.illustration-dot-processes-assets {
|
|
117
|
+
content: url('./Dot-illustrations/Light/processes/assets.svg');
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.dot-illustration img.illustration-dot-processes-work-item {
|
|
121
|
+
content: url('./Dot-illustrations/Light/processes/work-item.svg');
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* Dot Dark Illustrations */
|
|
125
|
+
|
|
126
|
+
.dot-illustration img.illustration-dot-global-disconnected.dark-theme {
|
|
127
|
+
content: url('./Dot-illustrations/Dark/global/disconnected.svg');
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.dot-illustration img.illustration-dot-global-features.dark-theme {
|
|
131
|
+
content: url('./Dot-illustrations/Dark/global/features.svg');
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.dot-illustration img.illustration-dot-global-launch.dark-theme {
|
|
135
|
+
content: url('./Dot-illustrations/Dark/global/launch.svg');
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.dot-illustration img.illustration-dot-global-nothing-defined.dark-theme {
|
|
139
|
+
content: url('./Dot-illustrations/Dark/global/nothing-defined.svg');
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.dot-illustration img.illustration-dot-global-survey.dark-theme {
|
|
143
|
+
content: url('./Dot-illustrations/Dark/global/survey.svg');
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.dot-illustration img.illustration-dot-processes-assets.dark-theme {
|
|
147
|
+
content: url('./Dot-illustrations/Dark/processes/assets.svg');
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.dot-illustration img.illustration-dot-processes-work-item.dark-theme {
|
|
151
|
+
content: url('./Dot-illustrations/Dark/processes/work-item.svg');
|
|
152
|
+
}
|