boottent-design 0.1.240 → 0.1.241

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/DESIGN.md CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  > [!WARNING]
4
4
  > **자동 생성된 파일 — 직접 수정 금지**
5
- > 생성 일시: 2026. 5. 20. 오후 4:21:53
6
- > 원본 소스: boottent-design v0.1.240
5
+ > 생성 일시: 2026. 5. 20. 오후 4:39:45
6
+ > 원본 소스: boottent-design v0.1.241
7
7
 
8
8
  ## 1. 개요 (Overview)
9
9
 
@@ -1,111 +1,251 @@
1
- /* Scoped Tailwind preflight equivalent.
2
- Uses :where() for zero specificity so consumers' own rules win naturally.
3
- Provides the base reset that DS components assume (Storybook gets it via @tailwind base). */
4
-
5
- *,
6
- ::before,
7
- ::after {
8
- box-sizing: border-box;
9
- border-width: 0;
10
- border-style: solid;
11
- border-color: currentColor;
12
- }
1
+ /* Tailwind v3 preflight, wrapped in @layer base.
2
+ Layered styles lose to unlayered consumer styles, so legacy app styles (e.g., partner's
3
+ `h1 { font-size: 3rem !important }`) win automatically DS components still get the
4
+ same base reset Storybook gets via `@tailwind base`. */
13
5
 
14
- :where(html) {
15
- -webkit-text-size-adjust: 100%;
16
- -moz-tab-size: 4;
17
- tab-size: 4;
18
- line-height: 1.5;
19
- }
6
+ @layer base {
7
+ *,
8
+ ::before,
9
+ ::after {
10
+ box-sizing: border-box;
11
+ border-width: 0;
12
+ border-style: solid;
13
+ border-color: #e5e7eb;
14
+ }
20
15
 
21
- :where(body) {
22
- margin: 0;
23
- line-height: inherit;
24
- }
16
+ ::before,
17
+ ::after {
18
+ --tw-content: "";
19
+ }
25
20
 
26
- :where(hr) {
27
- height: 0;
28
- color: inherit;
29
- border-top-width: 1px;
30
- }
21
+ :host,
22
+ html {
23
+ line-height: 1.5;
24
+ -webkit-text-size-adjust: 100%;
25
+ -moz-tab-size: 4;
26
+ tab-size: 4;
27
+ font-family: Pretendard, system-ui, sans-serif;
28
+ font-feature-settings: normal;
29
+ font-variation-settings: normal;
30
+ -webkit-tap-highlight-color: transparent;
31
+ }
31
32
 
32
- :where(h1, h2, h3, h4, h5, h6) {
33
- font-size: inherit;
34
- font-weight: inherit;
35
- margin: 0;
36
- }
33
+ body {
34
+ margin: 0;
35
+ line-height: inherit;
36
+ }
37
37
 
38
- :where(p, blockquote, dl, dd, figure) {
39
- margin: 0;
40
- }
38
+ hr {
39
+ height: 0;
40
+ color: inherit;
41
+ border-top-width: 1px;
42
+ }
41
43
 
42
- :where(ol, ul, menu) {
43
- list-style: none;
44
- margin: 0;
45
- padding: 0;
46
- }
44
+ abbr:where([title]) {
45
+ text-decoration: underline dotted;
46
+ }
47
47
 
48
- :where(a) {
49
- color: inherit;
50
- text-decoration: inherit;
51
- }
48
+ h1,
49
+ h2,
50
+ h3,
51
+ h4,
52
+ h5,
53
+ h6 {
54
+ font-size: inherit;
55
+ font-weight: inherit;
56
+ }
52
57
 
53
- :where(b, strong) {
54
- font-weight: bolder;
55
- }
58
+ a {
59
+ color: inherit;
60
+ text-decoration: inherit;
61
+ }
56
62
 
57
- :where(button, input, optgroup, select, textarea) {
58
- font-family: inherit;
59
- font-size: 100%;
60
- font-weight: inherit;
61
- line-height: inherit;
62
- color: inherit;
63
- margin: 0;
64
- padding: 0;
65
- }
63
+ b,
64
+ strong {
65
+ font-weight: bolder;
66
+ }
66
67
 
67
- :where(button, [type="button"], [type="reset"], [type="submit"]) {
68
- -webkit-appearance: button;
69
- background-color: transparent;
70
- background-image: none;
71
- cursor: pointer;
72
- }
68
+ code,
69
+ kbd,
70
+ samp,
71
+ pre {
72
+ font-family:
73
+ ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
74
+ "Courier New", monospace;
75
+ font-feature-settings: normal;
76
+ font-variation-settings: normal;
77
+ font-size: 1em;
78
+ }
73
79
 
74
- :where(img, svg, video, canvas, audio, iframe, embed, object) {
75
- display: block;
76
- vertical-align: middle;
77
- }
80
+ small {
81
+ font-size: 80%;
82
+ }
78
83
 
79
- :where(img, video) {
80
- max-width: 100%;
81
- height: auto;
82
- }
84
+ sub,
85
+ sup {
86
+ font-size: 75%;
87
+ line-height: 0;
88
+ position: relative;
89
+ vertical-align: baseline;
90
+ }
83
91
 
84
- :where(table) {
85
- text-indent: 0;
86
- border-color: inherit;
87
- border-collapse: collapse;
88
- }
92
+ sub {
93
+ bottom: -0.25em;
94
+ }
89
95
 
90
- :where(fieldset) {
91
- margin: 0;
92
- padding: 0;
93
- }
96
+ sup {
97
+ top: -0.5em;
98
+ }
94
99
 
95
- :where(legend) {
96
- padding: 0;
97
- }
100
+ table {
101
+ text-indent: 0;
102
+ border-color: inherit;
103
+ border-collapse: collapse;
104
+ }
98
105
 
99
- :where(textarea) {
100
- resize: vertical;
101
- }
106
+ button,
107
+ input,
108
+ optgroup,
109
+ select,
110
+ textarea {
111
+ font-family: inherit;
112
+ font-feature-settings: inherit;
113
+ font-variation-settings: inherit;
114
+ font-size: 100%;
115
+ font-weight: inherit;
116
+ line-height: inherit;
117
+ letter-spacing: inherit;
118
+ color: inherit;
119
+ margin: 0;
120
+ padding: 0;
121
+ }
102
122
 
103
- :where([role="button"], button) {
104
- cursor: pointer;
105
- }
123
+ button,
124
+ select {
125
+ text-transform: none;
126
+ }
127
+
128
+ button,
129
+ input:where([type="button"]),
130
+ input:where([type="reset"]),
131
+ input:where([type="submit"]) {
132
+ -webkit-appearance: button;
133
+ background-color: transparent;
134
+ background-image: none;
135
+ }
136
+
137
+ :-moz-focusring {
138
+ outline: auto;
139
+ }
140
+
141
+ :-moz-ui-invalid {
142
+ box-shadow: none;
143
+ }
144
+
145
+ progress {
146
+ vertical-align: baseline;
147
+ }
148
+
149
+ ::-webkit-inner-spin-button,
150
+ ::-webkit-outer-spin-button {
151
+ height: auto;
152
+ }
153
+
154
+ [type="search"] {
155
+ -webkit-appearance: textfield;
156
+ outline-offset: -2px;
157
+ }
158
+
159
+ ::-webkit-search-decoration {
160
+ -webkit-appearance: none;
161
+ }
162
+
163
+ ::-webkit-file-upload-button {
164
+ -webkit-appearance: button;
165
+ font: inherit;
166
+ }
167
+
168
+ summary {
169
+ display: list-item;
170
+ }
171
+
172
+ blockquote,
173
+ dl,
174
+ dd,
175
+ h1,
176
+ h2,
177
+ h3,
178
+ h4,
179
+ h5,
180
+ h6,
181
+ hr,
182
+ figure,
183
+ p,
184
+ pre {
185
+ margin: 0;
186
+ }
187
+
188
+ fieldset {
189
+ margin: 0;
190
+ padding: 0;
191
+ }
192
+
193
+ legend {
194
+ padding: 0;
195
+ }
196
+
197
+ ol,
198
+ ul,
199
+ menu {
200
+ list-style: none;
201
+ margin: 0;
202
+ padding: 0;
203
+ }
204
+
205
+ dialog {
206
+ padding: 0;
207
+ }
208
+
209
+ textarea {
210
+ resize: vertical;
211
+ }
212
+
213
+ input::placeholder,
214
+ textarea::placeholder {
215
+ opacity: 1;
216
+ color: #9ca3af;
217
+ }
218
+
219
+ button,
220
+ [role="button"] {
221
+ cursor: pointer;
222
+ }
223
+
224
+ :disabled {
225
+ cursor: default;
226
+ }
227
+
228
+ img,
229
+ svg,
230
+ video,
231
+ canvas,
232
+ audio,
233
+ iframe,
234
+ embed,
235
+ object {
236
+ display: block;
237
+ vertical-align: middle;
238
+ }
239
+
240
+ img,
241
+ video {
242
+ max-width: 100%;
243
+ height: auto;
244
+ }
106
245
 
107
- :where(:disabled) {
108
- cursor: default;
246
+ [hidden] {
247
+ display: none;
248
+ }
109
249
  }
110
250
 
111
251
  @font-face {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "boottent-design",
3
- "version": "0.1.240",
3
+ "version": "0.1.241",
4
4
  "description": "부트텐트 디자인시스템 라이브러리",
5
5
  "repository": {
6
6
  "type": "git",