@lotte-innovate/ui-component-test 0.2.8 → 0.2.10
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/lib/tsconfig.tsbuildinfo +1 -1
- package/dist/tailwind.config.js +0 -42
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/post-tinymce.js +19 -0
package/dist/tailwind.config.js
CHANGED
@@ -16,50 +16,8 @@ var config = {
|
|
16
16
|
fontFamily: {
|
17
17
|
sans: ['Noto Sans KR', 'sans-serif', 'Nunito Sans', 'Helvetica Neue', 'Helvetica', 'Arial'],
|
18
18
|
},
|
19
|
-
backgroundImage: {
|
20
|
-
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
|
21
|
-
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
|
22
|
-
},
|
23
|
-
keyframes: {
|
24
|
-
overlayShow: {
|
25
|
-
from: { opacity: '0' },
|
26
|
-
to: { opacity: '1' },
|
27
|
-
},
|
28
|
-
contentShow: {
|
29
|
-
from: { opacity: '0', transform: 'translate(-50%, -48%) scale(0.96)' },
|
30
|
-
to: { opacity: '1', transform: 'translate(-50%, -50%) scale(1)' },
|
31
|
-
},
|
32
|
-
slideDown: {
|
33
|
-
from: { height: '0px' },
|
34
|
-
to: { height: 'var(--radix-accordion-content-height)' },
|
35
|
-
},
|
36
|
-
slideUp: {
|
37
|
-
from: { height: 'var(--radix-accordion-content-height)' },
|
38
|
-
to: { height: '0px' },
|
39
|
-
},
|
40
|
-
},
|
41
|
-
animation: {
|
42
|
-
overlayShow: 'overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1)',
|
43
|
-
contentShow: 'contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1)',
|
44
|
-
slideDown: 'slideDown 300ms cubic-bezier(0.87, 0, 0.13, 1)',
|
45
|
-
slideUp: 'slideUp 300ms cubic-bezier(0.87, 0, 0.13, 1)',
|
46
|
-
},
|
47
|
-
boxShadow: {
|
48
|
-
'button-classic': '0px 0px 0px 1px #00002D17 inset, 0px -2px 1px 0px #0000330F inset, 0px 4px 2px -2px #FFFFFFB2 inset, 0px 2px 1px -1px #FFFFFFB2 inset',
|
49
|
-
'checkbox-classic': '0px 0px 0px 1px #00002D17 inset, 0px -2px 1px 0px #0000330F inset, 0px 4px 2px -2px #FFFFFF66 inset, 0px 2px 1px -1px #FFFFFF66 inset',
|
50
|
-
'button-dark-classic': '0px 0px 0px 1px #414142 inset, 0px -2px 1px 0px #414142 inset, 0px 4px 2px -2px #414142 inset, 0px 2px 1px -1px #414142 inset',
|
51
|
-
'card-classic': '0px 0px 0px 0.5px #0000000D, 0px 1px 4px 0px #00002D17, 0px 2px 1px -1px #0000000D, 0px 1px 3px 0px #0000000D',
|
52
|
-
'card-dark-classic': '0px 0px 0px 0.5px #414142, 0px 1px 4px 0px #414142, 0px 2px 1px -1px #414142, 0px 1px 3px 0px #414142',
|
53
|
-
'segmented-control-dark-classic': '0px 0px 0px 0.5px #0000000D, 0px 1px 4px 0px #363636, 0px 2px 1px -1px #0000000D, 0px 1px 3px 0px #0000000D',
|
54
|
-
},
|
55
19
|
},
|
56
20
|
},
|
57
|
-
plugins: [
|
58
|
-
function (_a) {
|
59
|
-
var addVariant = _a.addVariant;
|
60
|
-
addVariant('data-placeholder', '&:where([data-placeholder])');
|
61
|
-
},
|
62
|
-
],
|
63
21
|
darkMode: 'class',
|
64
22
|
};
|
65
23
|
export default config;
|