boottent-design 0.1.241 → 0.1.242

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:39:45
6
- > 원본 소스: boottent-design v0.1.241
5
+ > 생성 일시: 2026. 5. 20. 오후 4:44:37
6
+ > 원본 소스: boottent-design v0.1.242
7
7
 
8
8
  ## 1. 개요 (Overview)
9
9
 
@@ -1,251 +1,189 @@
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`. */
5
-
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
- }
15
-
16
- ::before,
17
- ::after {
18
- --tw-content: "";
19
- }
20
-
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
- }
32
-
33
- body {
34
- margin: 0;
35
- line-height: inherit;
36
- }
37
-
38
- hr {
39
- height: 0;
40
- color: inherit;
41
- border-top-width: 1px;
42
- }
43
-
44
- abbr:where([title]) {
45
- text-decoration: underline dotted;
46
- }
47
-
48
- h1,
49
- h2,
50
- h3,
51
- h4,
52
- h5,
53
- h6 {
54
- font-size: inherit;
55
- font-weight: inherit;
56
- }
57
-
58
- a {
59
- color: inherit;
60
- text-decoration: inherit;
61
- }
62
-
63
- b,
64
- strong {
65
- font-weight: bolder;
66
- }
67
-
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
- }
79
-
80
- small {
81
- font-size: 80%;
82
- }
83
-
84
- sub,
85
- sup {
86
- font-size: 75%;
87
- line-height: 0;
88
- position: relative;
89
- vertical-align: baseline;
90
- }
91
-
92
- sub {
93
- bottom: -0.25em;
94
- }
95
-
96
- sup {
97
- top: -0.5em;
98
- }
99
-
100
- table {
101
- text-indent: 0;
102
- border-color: inherit;
103
- border-collapse: collapse;
104
- }
105
-
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
- }
122
-
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
- }
245
-
246
- [hidden] {
247
- display: none;
248
- }
1
+ /* Tailwind v3 preflight, mirrored verbatim except for two adjustments so it works as a
2
+ drop-in stylesheet for consumers (not as @tailwind base output):
3
+ - Element selectors are wrapped in :where() to keep specificity 0, so consumer-defined
4
+ element rules (e.g., legacy `h1 { font-size: 3rem !important }`) automatically win and
5
+ non-DS UI is unaffected. DS components still get the same base reset they get in
6
+ Storybook (where it comes from `@tailwind base`).
7
+ - The unwrappable universal selector keeps Tailwind's own specificity. */
8
+
9
+ *,
10
+ ::before,
11
+ ::after {
12
+ box-sizing: border-box;
13
+ border-width: 0;
14
+ border-style: solid;
15
+ border-color: #e5e7eb;
16
+ }
17
+
18
+ ::before,
19
+ ::after {
20
+ --tw-content: "";
21
+ }
22
+
23
+ :where(:host),
24
+ :where(html) {
25
+ line-height: 1.5;
26
+ -webkit-text-size-adjust: 100%;
27
+ -moz-tab-size: 4;
28
+ tab-size: 4;
29
+ font-family: Pretendard, system-ui, sans-serif;
30
+ font-feature-settings: normal;
31
+ font-variation-settings: normal;
32
+ -webkit-tap-highlight-color: transparent;
33
+ }
34
+
35
+ :where(body) {
36
+ margin: 0;
37
+ line-height: inherit;
38
+ }
39
+
40
+ :where(hr) {
41
+ height: 0;
42
+ color: inherit;
43
+ border-top-width: 1px;
44
+ }
45
+
46
+ :where(abbr[title]) {
47
+ text-decoration: underline dotted;
48
+ }
49
+
50
+ :where(h1, h2, h3, h4, h5, h6) {
51
+ font-size: inherit;
52
+ font-weight: inherit;
53
+ }
54
+
55
+ :where(a) {
56
+ color: inherit;
57
+ text-decoration: inherit;
58
+ }
59
+
60
+ :where(b, strong) {
61
+ font-weight: bolder;
62
+ }
63
+
64
+ :where(code, kbd, samp, pre) {
65
+ font-family:
66
+ ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
67
+ "Courier New", monospace;
68
+ font-feature-settings: normal;
69
+ font-variation-settings: normal;
70
+ font-size: 1em;
71
+ }
72
+
73
+ :where(small) {
74
+ font-size: 80%;
75
+ }
76
+
77
+ :where(sub, sup) {
78
+ font-size: 75%;
79
+ line-height: 0;
80
+ position: relative;
81
+ vertical-align: baseline;
82
+ }
83
+
84
+ :where(sub) {
85
+ bottom: -0.25em;
86
+ }
87
+
88
+ :where(sup) {
89
+ top: -0.5em;
90
+ }
91
+
92
+ :where(table) {
93
+ text-indent: 0;
94
+ border-color: inherit;
95
+ border-collapse: collapse;
96
+ }
97
+
98
+ :where(button, input, optgroup, select, textarea) {
99
+ font-family: inherit;
100
+ font-feature-settings: inherit;
101
+ font-variation-settings: inherit;
102
+ font-size: 100%;
103
+ font-weight: inherit;
104
+ line-height: inherit;
105
+ letter-spacing: inherit;
106
+ color: inherit;
107
+ margin: 0;
108
+ padding: 0;
109
+ }
110
+
111
+ :where(button, select) {
112
+ text-transform: none;
113
+ }
114
+
115
+ :where(button, input[type="button"], input[type="reset"], input[type="submit"]) {
116
+ -webkit-appearance: button;
117
+ background-color: transparent;
118
+ background-image: none;
119
+ }
120
+
121
+ :where(progress) {
122
+ vertical-align: baseline;
123
+ }
124
+
125
+ :where([type="search"]) {
126
+ -webkit-appearance: textfield;
127
+ outline-offset: -2px;
128
+ }
129
+
130
+ :where(summary) {
131
+ display: list-item;
132
+ }
133
+
134
+ :where(blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre) {
135
+ margin: 0;
136
+ }
137
+
138
+ :where(fieldset) {
139
+ margin: 0;
140
+ padding: 0;
141
+ }
142
+
143
+ :where(legend) {
144
+ padding: 0;
145
+ }
146
+
147
+ :where(ol, ul, menu) {
148
+ list-style: none;
149
+ margin: 0;
150
+ padding: 0;
151
+ }
152
+
153
+ :where(dialog) {
154
+ padding: 0;
155
+ }
156
+
157
+ :where(textarea) {
158
+ resize: vertical;
159
+ }
160
+
161
+ :where(input)::placeholder,
162
+ :where(textarea)::placeholder {
163
+ opacity: 1;
164
+ color: #9ca3af;
165
+ }
166
+
167
+ :where(button, [role="button"]) {
168
+ cursor: pointer;
169
+ }
170
+
171
+ :where(:disabled) {
172
+ cursor: default;
173
+ }
174
+
175
+ :where(img, svg, video, canvas, audio, iframe, embed, object) {
176
+ display: block;
177
+ vertical-align: middle;
178
+ }
179
+
180
+ :where(img, video) {
181
+ max-width: 100%;
182
+ height: auto;
183
+ }
184
+
185
+ :where([hidden]) {
186
+ display: none;
249
187
  }
250
188
 
251
189
  @font-face {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "boottent-design",
3
- "version": "0.1.241",
3
+ "version": "0.1.242",
4
4
  "description": "부트텐트 디자인시스템 라이브러리",
5
5
  "repository": {
6
6
  "type": "git",