@digital-ai/dot-illustrations 1.0.1 → 1.0.2

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/README.md CHANGED
@@ -33,7 +33,7 @@ If not using `dot-components` then import `@digital-ai/dot-illustrations` into y
33
33
 
34
34
  ## Contributing
35
35
 
36
- To add new illustrations, first add the new file to the appropriate location in one of the asset folders (Agility-illustrations, Dot-illustrations, etc.).
36
+ To add new illustrations, first add the new file to the appropriate location in one of the asset folders (Agility-illustrations, Dot-illustrations, etc.). The file names should not contain spaces or special characters.
37
37
 
38
38
  Next, add new class selectors to `index.css` that set the content to your new files. Define the light version first, then if you have a dark version, define it second with an additional .dark-theme class selector. For example:
39
39
  ```css
package/index.css CHANGED
@@ -60,35 +60,35 @@
60
60
  /* Dashboard Light Illustrations */
61
61
 
62
62
  .dot-illustration img.illustration-dashboards-custom {
63
- content: url('./Dashboards/Light/Release/Custom.svg');
63
+ content: url('./Dashboards/Light/Release/custom.svg');
64
64
  }
65
65
 
66
66
  .dot-illustration img.illustration-dashboards-dora {
67
- content: url('./Dashboards/Light/Release/DORA\ mertrics.svg');
67
+ content: url('./Dashboards/Light/Release/dora-metrics.svg');
68
68
  }
69
69
 
70
70
  .dot-illustration img.illustration-dashboards-onboarding {
71
- content: url('./Dashboards/Light/Release/Onboarding\ plan\ and\ progress.svg');
71
+ content: url('./Dashboards/Light/Release/onboarding-plan-and-progress.svg');
72
72
  }
73
73
 
74
74
  .dot-illustration img.illustration-dashboards-release-dependency {
75
- content: url('./Dashboards/Light/Release/Release\ dependency\ dashboard.svg');
75
+ content: url('./Dashboards/Light/Release/release-dependency-dashboard.svg');
76
76
  }
77
77
 
78
78
  .dot-illustration img.illustration-dashboards-release-executive-overview {
79
- content: url('./Dashboards/Light/Release/Release\ executive\ overview.svg');
79
+ content: url('./Dashboards/Light/Release/release-executive-overview.svg');
80
80
  }
81
81
 
82
82
  .dot-illustration img.illustration-dashboards-release-late-task {
83
- content: url('./Dashboards/Light/Release/Release\ late\ task\ and\ its\ impact.svg');
83
+ content: url('./Dashboards/Light/Release/release-late-task-and-its-impact.svg');
84
84
  }
85
85
 
86
86
  .dot-illustration img.illustration-dashboards-release-open-task {
87
- content: url('./Dashboards/Light/Release/Release\ task\ open\ work\ analysis.svg');
87
+ content: url('./Dashboards/Light/Release/release-task-open-work-analysis.svg');
88
88
  }
89
89
 
90
90
  .dot-illustration img.illustration-dashboards-workflow-adoption {
91
- content: url('./Dashboards/Light/Release/Workflow\ adoption\ and\ usage\ patterns.svg');
91
+ content: url('./Dashboards/Light/Release/workflow-adoption-and-usage-patterns.svg');
92
92
  }
93
93
 
94
94
  /* Dot Light Illustrations */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital-ai/dot-illustrations",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A central place for the design team to keep illustrations and for dev teams to find them.",
5
5
  "main": "./index.css",
6
6
  "scripts": {