teachable-design-system 0.1.9 → 0.1.11
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/assets/arrow-down.png +0 -0
- package/dist/assets/checked.png +0 -0
- package/dist/assets/icon_size.png +0 -0
- package/dist/assets/icons/arrow-down.png +0 -0
- package/dist/assets/icons/checked.png +0 -0
- package/dist/assets/icons/icon_size.png +0 -0
- package/dist/assets/images/.gitkeep +0 -0
- package/dist/assets/index.ts +1 -0
- package/dist/index.esm.js +3 -3
- package/package.json +3 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// export * from "./icons" 형식으로
|
package/dist/index.esm.js
CHANGED
|
@@ -2,9 +2,9 @@ import { jsx, jsxs } from 'react/jsx-runtime';
|
|
|
2
2
|
import styled from '@emotion/styled';
|
|
3
3
|
import { css } from '@emotion/react';
|
|
4
4
|
import React, { useState } from 'react';
|
|
5
|
-
import element from '
|
|
6
|
-
import arrowDownIcon from '
|
|
7
|
-
import icon from '
|
|
5
|
+
import element from './assets/icons/checked.png';
|
|
6
|
+
import arrowDownIcon from './assets/icons/arrow-down.png';
|
|
7
|
+
import icon from './assets/icons/icon_size.png';
|
|
8
8
|
|
|
9
9
|
const colors = {
|
|
10
10
|
//mode
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "teachable-design-system",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"scripts": {
|
|
21
21
|
"storybook": "storybook dev -p 6006",
|
|
22
22
|
"build-storybook": "storybook build",
|
|
23
|
-
"build": "rollup -c"
|
|
23
|
+
"build": "rollup -c && node scripts/fix-asset-paths.js"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"eslint-plugin-storybook": "^9.1.1",
|
|
44
44
|
"globals": "^16.3.0",
|
|
45
45
|
"rollup": "^3.0.0",
|
|
46
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
46
47
|
"rollup-plugin-dts": "^5.3.1",
|
|
47
48
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
48
49
|
"storybook": "^9.1.1",
|