do-ui-design-system 0.1.1 → 0.1.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/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +2 -2
- package/src/lib/do-theme/index.css +0 -16
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Button, Icon } from './atoms/index.
|
|
2
|
-
import { IconButton } from './molecules/index.
|
|
1
|
+
import { Button, Icon } from './atoms/index.js';
|
|
2
|
+
import { IconButton } from './molecules/index.js';
|
|
3
3
|
export { Button, Icon, IconButton };
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { Button, Icon } from './atoms/index.
|
|
2
|
-
import { IconButton } from './molecules/index.
|
|
1
|
+
import { Button, Icon } from './atoms/index.js';
|
|
2
|
+
import { IconButton } from './molecules/index.js';
|
|
3
3
|
export { Button, Icon, IconButton };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "do-ui-design-system",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Design system en Svelte + CSS + Storybook",
|
|
5
5
|
"author": "Data Observatory",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"dist",
|
|
24
|
-
"
|
|
24
|
+
"dist/do-theme/index.css",
|
|
25
25
|
"!dist/**/*.test.*",
|
|
26
26
|
"!dist/**/*.spec.*",
|
|
27
27
|
"!dist/**/*.stories.*",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
@import "./var-light.css";
|
|
2
|
-
@import "./var-dark.css";
|
|
3
|
-
@import "./font.css";
|
|
4
|
-
@import "./icomoon/icons.css";
|
|
5
|
-
@import "./button.css";
|
|
6
|
-
@import "./border.css";
|
|
7
|
-
@import "./color.css";
|
|
8
|
-
|
|
9
|
-
/*
|
|
10
|
-
To modify themes (light and dark):
|
|
11
|
-
|
|
12
|
-
There are 2 files, var-dark.css and var-light.css, where you can find colors and base definitions.
|
|
13
|
-
|
|
14
|
-
Then are css component files with style definitions that use those variables.
|
|
15
|
-
|
|
16
|
-
*/
|