do-ui-design-system 1.1.16 → 1.1.17

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.
@@ -5,11 +5,46 @@
5
5
  justify-content: space-between;
6
6
  margin-bottom: 1rem;
7
7
 
8
- .do-table__header__tags {
8
+ .do-table__header__left__tags {
9
9
  display: flex;
10
10
  align-items: center;
11
11
  gap: 0.5rem;
12
12
  }
13
+
14
+ .do-table__header__right {
15
+ display: flex;
16
+ align-items: center;
17
+ gap: 1rem;
18
+
19
+ .do-table__header__right__dates {
20
+ display: flex;
21
+ align-items: flex-end;
22
+ gap: 0.75rem;
23
+ flex-wrap: wrap;
24
+ }
25
+ }
26
+
27
+ .do-table__header__right__date-range {
28
+ display: flex;
29
+ align-items: center;
30
+ gap: 0.5rem;
31
+ flex-wrap: wrap;
32
+ position: relative;
33
+ }
34
+
35
+ .do-table__date-fields {
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 0.5rem;
39
+ flex-wrap: wrap;
40
+ position: relative;
41
+
42
+ .do-table__date-fields__field {
43
+ display: flex;
44
+ flex-direction: column;
45
+ gap: 0.25rem;
46
+ }
47
+ }
13
48
  }
14
49
 
15
50
  .do-table-wrapper {
@@ -30,6 +65,9 @@
30
65
  }
31
66
 
32
67
  .do-table__content__th {
68
+ display: grid;
69
+ grid-template-columns: 1fr min-content;
70
+ align-items: center;
33
71
  padding: 0.75rem 1rem;
34
72
  text-align: left;
35
73
  font-size: 1rem;
@@ -37,9 +75,10 @@
37
75
  cursor: pointer;
38
76
  transition: color 0.15s;
39
77
  color: #ffffff;
78
+ width: 88%;
40
79
 
41
80
  &:not(.col-check):not(.do-table__content__th-action) {
42
- min-width: 120px;
81
+ min-width: 2rem;
43
82
  }
44
83
 
45
84
  .do-table__content__th__sort {
@@ -101,7 +140,11 @@
101
140
  padding: 0.2rem 0.5rem;
102
141
 
103
142
  input {
104
- max-width: 80%;
143
+ width: 90%;
144
+
145
+ &::placeholder {
146
+ color: #c8c8c8;
147
+ }
105
148
  }
106
149
  }
107
150
 
@@ -115,7 +158,7 @@
115
158
  color: inherit;
116
159
 
117
160
  &:not(.col-check):not(.do-table__content__th-action) {
118
- min-width: 120px;
161
+ min-width: 2rem;
119
162
  }
120
163
  }
121
164
 
@@ -157,60 +200,6 @@
157
200
  }
158
201
  }
159
202
 
160
- .do-table__header__dates {
161
- display: flex;
162
- align-items: flex-end;
163
- gap: 0.75rem;
164
- flex-wrap: wrap;
165
- }
166
-
167
- .do-table__date-toggle {
168
- display: flex;
169
- border: 1px solid var(--do-border, #3f3f46);
170
- border-radius: 6px;
171
- overflow: hidden;
172
- }
173
-
174
- .do-table__date-toggle__btn {
175
- padding: 0.375rem 0.75rem;
176
- font-size: 0.875rem;
177
- background: transparent;
178
- border: none;
179
- cursor: pointer;
180
- color: inherit;
181
- transition: background 0.15s;
182
-
183
- &.active {
184
- background: var(--do-bg-secondary, #3f3f46);
185
- }
186
-
187
- &:hover:not(.active) {
188
- background: var(--do-bg-secondary-hover, #52525b);
189
- }
190
- }
191
-
192
- .do-table__date-range {
193
- display: flex;
194
- align-items: center;
195
- gap: 0.5rem;
196
- flex-wrap: wrap;
197
- position: relative;
198
- }
199
-
200
- .do-table__date-fields {
201
- display: flex;
202
- align-items: center;
203
- gap: 0.5rem;
204
- flex-wrap: wrap;
205
- position: relative;
206
-
207
- .do-table__date-fields__field {
208
- display: flex;
209
- flex-direction: column;
210
- gap: 0.25rem;
211
- }
212
- }
213
-
214
203
  .do-table__date-error {
215
204
  position: absolute;
216
205
  white-space: nowrap;
@@ -1,3 +1,29 @@
1
+ <!-- @component
2
+ ```Svelte
3
+ <TableBasic
4
+ data={rows}
5
+ columns={columns}
6
+ actionColumns?={actionColumns}
7
+ tagConfig?={tagConfig}
8
+ dateConfig?={dateConfig}
9
+ idKey?={'id'}
10
+ headerActions?={headerActions}
11
+ pageSize?={25}
12
+ showCheckbox?={true}
13
+ onSelectionChange?={(ids) => {}}
14
+ />
15
+ ```
16
+ - `data`: T[] - array of row objects
17
+ - `columns`: ColumnDef<T>[] - column definitions `{ key: keyof T, label: string, maxWidth?: number }` — `maxWidth` in rem
18
+ - `actionColumns?`: ActionColumnDef<T>[] - icon button columns `{ key: string, icon: IconNames, label?: string, showHeader?: boolean, onClick: (row: T) => void }`
19
+ - `tagConfig?`: `{ column: keyof T, label: string }` - enables tag filter buttons in the header
20
+ - `dateConfig?`: `{ columnFrom?: keyof T, columnTo?: keyof T, mode?: 'year' | 'date' }` - enables date range filter; filters by overlap when both columns are set
21
+ - `idKey?`: keyof T - row identifier key (default `'id'`)
22
+ - `headerActions?`: HeaderAction[] - `{ icon: IconNames, label: string, onClick: () => void }` - action buttons in the table header
23
+ - `pageSize?`: number - rows per page (default `25`)
24
+ - `showCheckbox?`: boolean - show row selection checkboxes (default `true`)
25
+ - `onSelectionChange?`: `(ids: (string | number)[]) => void` - callback fired when row selection changes
26
+ -->
1
27
  <script lang="ts">
2
28
  import { Button, Icon } from '../../atoms/index.js';
3
29
  import type { IconNames } from '../../do-theme/index.ts';
@@ -101,15 +127,14 @@
101
127
  if (!dateConfig || (!dateFrom && !dateTo) || dateError) return true;
102
128
 
103
129
  const normalize = (val: string) =>
104
- dateMode === 'year' && val.length > 4
105
- ? new Date(val).getFullYear().toString()
106
- : val;
130
+ dateMode === 'year' && val.length > 4 ? new Date(val).getFullYear().toString() : val;
107
131
 
108
132
  if (dateConfig.columnFrom && dateConfig.columnTo) {
109
133
  const from = normalize(String(row[dateConfig.columnFrom]));
110
134
  const to = normalize(String(row[dateConfig.columnTo]));
111
- if (dateFrom && from < dateFrom) return false;
112
- if (dateTo && to > dateTo) return false;
135
+ // overlap: rowFrom <= filterTo AND rowTo >= filterFrom
136
+ if (dateTo && from > dateTo) return false;
137
+ if (dateFrom && to < dateFrom) return false;
113
138
  } else if (dateConfig.columnFrom) {
114
139
  const from = normalize(String(row[dateConfig.columnFrom]));
115
140
  if (dateFrom && from < dateFrom) return false;
@@ -211,93 +236,96 @@
211
236
 
212
237
  <div class="do-table">
213
238
  <section class="do-table__header">
214
- {#if tagConfig?.column}
215
- <div class="do-table__header__tags">
216
- {#if tagConfig.label}
217
- <Button
218
- label={tagConfig.label}
219
- ariaLabel="Ver todos"
220
- rounded
221
- variant={activeTags.size === 0 ? 'do-btn-accent' : 'do-btn-primary'}
222
- onClick={clearTags}
223
- />
224
- {:else}
225
- <p>{columnName}:</p>
226
- {/if}
227
- {#each tagOptions() as value}
228
- <Button
229
- label={value}
230
- ariaLabel={value}
231
- rounded
232
- variant={activeTags.has(value) ? 'do-btn-accent' : 'do-btn-primary'}
233
- onClick={() => toggleTag(value)}
234
- />
235
- {/each}
236
- </div>
237
- {/if}
238
-
239
- {#if dateConfig}
240
- <div class="do-table__header__dates">
241
- <div class="do-table__date-range">
242
- <h5>Rango fechas</h5>
243
- <div class="do-table__date-fields">
244
- <div class="do-table__date-fields__field">
245
- {#if dateMode === 'year'}
246
- <select bind:value={dateFrom} class="do-select">
247
- <option value="">Desde</option>
248
- {#each years as year}
249
- <option value={year}>{year}</option>
250
- {/each}
251
- </select>
252
- {:else}
253
- <input type="date" bind:value={dateFrom} class="do-input" />
254
- {/if}
255
- </div>
256
-
257
- <div class="do-table__date-fields__field">
258
- {#if dateMode === 'year'}
259
- <select bind:value={dateTo} class="do-select">
260
- <option value="">Hasta</option>
261
- {#each years as year}
262
- <option value={year}>{year}</option>
263
- {/each}
264
- </select>
265
- {:else}
266
- <input type="date" bind:value={dateTo} class="do-input" />
239
+ <div class="do-table__header__left">
240
+ {#if tagConfig?.column}
241
+ <div class="do-table__header__left__tags">
242
+ {#if tagConfig.label}
243
+ <Button
244
+ label={tagConfig.label}
245
+ ariaLabel="Ver todos"
246
+ rounded
247
+ variant={activeTags.size === 0 ? 'do-btn-accent' : 'do-btn-primary'}
248
+ onClick={clearTags}
249
+ />
250
+ {:else}
251
+ <p>{columnName}:</p>
252
+ {/if}
253
+ {#each tagOptions() as value}
254
+ <Button
255
+ label={value}
256
+ ariaLabel={value}
257
+ rounded
258
+ variant={activeTags.has(value) ? 'do-btn-accent' : 'do-btn-primary'}
259
+ onClick={() => toggleTag(value)}
260
+ />
261
+ {/each}
262
+ </div>
263
+ {/if}
264
+ </div>
265
+ <div class="do-table__header__right">
266
+ {#if dateConfig}
267
+ <div class="do-table__header__right__dates">
268
+ <div class="do-table__header__right__date-range">
269
+ <h5>Rango fechas</h5>
270
+ <div class="do-table__date-fields">
271
+ <div class="do-table__date-fields__field">
272
+ {#if dateMode === 'year'}
273
+ <select bind:value={dateFrom} class="do-select">
274
+ <option value="">Desde</option>
275
+ {#each years as year}
276
+ <option value={year}>{year}</option>
277
+ {/each}
278
+ </select>
279
+ {:else}
280
+ <input type="date" bind:value={dateFrom} class="do-input" />
281
+ {/if}
282
+ </div>
283
+
284
+ <div class="do-table__date-fields__field">
285
+ {#if dateMode === 'year'}
286
+ <select bind:value={dateTo} class="do-select">
287
+ <option value="">Hasta</option>
288
+ {#each years as year}
289
+ <option value={year}>{year}</option>
290
+ {/each}
291
+ </select>
292
+ {:else}
293
+ <input type="date" bind:value={dateTo} class="do-input" />
294
+ {/if}
295
+ </div>
296
+
297
+ {#if dateError}
298
+ <span class="do-table__date-error">{dateError}</span>
267
299
  {/if}
268
300
  </div>
269
301
 
270
- {#if dateError}
271
- <span class="do-table__date-error">{dateError}</span>
302
+ {#if dateFrom || dateTo}
303
+ <IconButton
304
+ iconName="icon-close"
305
+ ariaLabel="limpiar fechas"
306
+ variant="do-btn-secondary"
307
+ circle
308
+ onClick={clearDates}
309
+ />
272
310
  {/if}
273
311
  </div>
312
+ </div>
313
+ {/if}
274
314
 
275
- {#if dateFrom || dateTo}
315
+ {#if headerActions.length}
316
+ <div class="do-table__header__right__actions">
317
+ {#each headerActions as action}
276
318
  <IconButton
277
- iconName="icon-close"
278
- ariaLabel="limpiar fechas"
279
- variant="do-btn-secondary"
280
- circle
281
- onClick={clearDates}
319
+ iconName={action.icon}
320
+ ariaLabel={action.label}
321
+ label={action.label}
322
+ variant="do-btn-accent"
323
+ onClick={action.onClick}
282
324
  />
283
- {/if}
325
+ {/each}
284
326
  </div>
285
- </div>
286
- {/if}
287
-
288
- {#if headerActions.length}
289
- <div class="do-table__actions">
290
- {#each headerActions as action}
291
- <IconButton
292
- iconName={action.icon}
293
- ariaLabel={action.label}
294
- label={action.label}
295
- variant="do-btn-accent"
296
- onClick={action.onClick}
297
- />
298
- {/each}
299
- </div>
300
- {/if}
327
+ {/if}
328
+ </div>
301
329
  </section>
302
330
 
303
331
  <section class="do-table-wrapper">
@@ -317,22 +345,24 @@
317
345
  {/if}
318
346
  {#each columns as col}
319
347
  <th
320
- class="do-table__content__th"
321
348
  class:sort-active={sortKey === col.key}
349
+ style={col.maxWidth ? `max-width: ${col.maxWidth}rem` : undefined}
322
350
  onclick={() => handleSort(String(col.key))}
323
351
  >
324
- <span>{col.label}</span>
325
- {#if sortKey === col.key}
326
- <span
327
- class="do-table__content__th__sort {sortDir === 'asc'
328
- ? ''
329
- : 'do-table__content__th__sort--up'}"
330
- >
331
- <Icon name="icon-chevron-down" />
332
- </span>
333
- {:else}
334
- <Icon name="icon-chevron-up-down" />
335
- {/if}
352
+ <div class="do-table__content__th">
353
+ <span>{col.label}</span>
354
+ {#if sortKey === col.key}
355
+ <span
356
+ class="do-table__content__th__sort {sortDir === 'asc'
357
+ ? ''
358
+ : 'do-table__content__th__sort--up'}"
359
+ >
360
+ <Icon name="icon-chevron-down" />
361
+ </span>
362
+ {:else}
363
+ <Icon name="icon-chevron-up-down" />
364
+ {/if}
365
+ </div>
336
366
  </th>
337
367
  {/each}
338
368
  {#each actionColumns as col}
@@ -347,7 +377,10 @@
347
377
  <th></th>
348
378
  {/if}
349
379
  {#each columns as col}
350
- <th class="do-table__content__th-filter">
380
+ <th
381
+ class="do-table__content__th-filter"
382
+ style={col.maxWidth ? `max-width: ${col.maxWidth}rem` : undefined}
383
+ >
351
384
  <input
352
385
  type="text"
353
386
  class="do-table__content__filter-input do-input"
@@ -384,7 +417,9 @@
384
417
  </td>
385
418
  {/if}
386
419
  {#each columns as col}
387
- <td>{row[col.key]}</td>
420
+ <td style={col.maxWidth ? `max-width: ${col.maxWidth}rem` : undefined}
421
+ >{row[col.key]}</td
422
+ >
388
423
  {/each}
389
424
  {#each actionColumns as col}
390
425
  <td class="do-table__content__th-action">
@@ -11,6 +11,32 @@ type Props<T extends Record<string, any>> = {
11
11
  showCheckbox?: boolean;
12
12
  onSelectionChange?: (ids: (string | number)[]) => void;
13
13
  };
14
+ /**
15
+ * ```Svelte
16
+ * <TableBasic
17
+ * data={rows}
18
+ * columns={columns}
19
+ * actionColumns?={actionColumns}
20
+ * tagConfig?={tagConfig}
21
+ * dateConfig?={dateConfig}
22
+ * idKey?={'id'}
23
+ * headerActions?={headerActions}
24
+ * pageSize?={25}
25
+ * showCheckbox?={true}
26
+ * onSelectionChange?={(ids) => {}}
27
+ * />
28
+ * ```
29
+ * - `data`: T[] - array of row objects
30
+ * - `columns`: ColumnDef<T>[] - column definitions `{ key: keyof T, label: string, maxWidth?: number }` — `maxWidth` in rem
31
+ * - `actionColumns?`: ActionColumnDef<T>[] - icon button columns `{ key: string, icon: IconNames, label?: string, showHeader?: boolean, onClick: (row: T) => void }`
32
+ * - `tagConfig?`: `{ column: keyof T, label: string }` - enables tag filter buttons in the header
33
+ * - `dateConfig?`: `{ columnFrom?: keyof T, columnTo?: keyof T, mode?: 'year' | 'date' }` - enables date range filter; filters by overlap when both columns are set
34
+ * - `idKey?`: keyof T - row identifier key (default `'id'`)
35
+ * - `headerActions?`: HeaderAction[] - `{ icon: IconNames, label: string, onClick: () => void }` - action buttons in the table header
36
+ * - `pageSize?`: number - rows per page (default `25`)
37
+ * - `showCheckbox?`: boolean - show row selection checkboxes (default `true`)
38
+ * - `onSelectionChange?`: `(ids: (string | number)[]) => void` - callback fired when row selection changes
39
+ */
14
40
  declare const TableBasic: import("svelte").Component<Props<any>, {}, "">;
15
41
  type TableBasic = ReturnType<typeof TableBasic>;
16
42
  export default TableBasic;
@@ -1 +1 @@
1
- {"version":3,"file":"TableBasic.svelte.d.ts","sourceRoot":"","sources":["../../../src/lib/organisms/TableBasic/TableBasic.svelte.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAGV,SAAS,EACT,UAAU,EACV,YAAY,EACZ,eAAe,EACf,SAAS,EAET,MAAM,uBAAuB,CAAC;AAG/B,KAAK,KAAK,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI;IAC3C,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;IACxB,aAAa,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IACrC,SAAS,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACzB,UAAU,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC,CAAC;IAChB,aAAa,CAAC,EAAE,YAAY,EAAE,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,iBAAiB,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,KAAK,IAAI,CAAC;CACvD,CAAC;AAuWH,QAAA,MAAM,UAAU,gDAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"TableBasic.svelte.d.ts","sourceRoot":"","sources":["../../../src/lib/organisms/TableBasic/TableBasic.svelte.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAGV,SAAS,EACT,UAAU,EACV,YAAY,EACZ,eAAe,EACf,SAAS,EAET,MAAM,uBAAuB,CAAC;AAG/B,KAAK,KAAK,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI;IAC3C,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;IACxB,aAAa,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IACrC,SAAS,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACzB,UAAU,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC,CAAC;IAChB,aAAa,CAAC,EAAE,YAAY,EAAE,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,iBAAiB,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,KAAK,IAAI,CAAC;CACvD,CAAC;AA4WH;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,UAAU,gDAAwC,CAAC;AACzD,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,CAAC;AAChD,eAAe,UAAU,CAAC"}
@@ -25,6 +25,7 @@ export type ActionColumnDef<T> = {
25
25
  export type ColumnDef<T> = {
26
26
  key: keyof T;
27
27
  label: string;
28
+ maxWidth?: number;
28
29
  };
29
30
  export type TableProps<T extends Record<string, any>> = {
30
31
  data: T[];
@@ -1 +1 @@
1
- {"version":3,"file":"TableBasic.types.d.ts","sourceRoot":"","sources":["../../../src/lib/organisms/TableBasic/TableBasic.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAExD,MAAM,MAAM,aAAa,GAAG,KAAK,GAAG,MAAM,GAAG,IAAI,CAAC;AAClD,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,MAAM,CAAC;AAEvC,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI;IACvB,MAAM,EAAE,MAAM,CAAC,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;IACnB,IAAI,CAAC,EAAE,QAAQ,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACvB,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,IAAI,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI;IACvB,GAAG,EAAE,MAAM,CAAC,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI;IACpD,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;IACxB,aAAa,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IACrC,SAAS,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACzB,UAAU,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC,CAAC;IAChB,aAAa,CAAC,EAAE,YAAY,EAAE,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,iBAAiB,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,KAAK,IAAI,CAAC;CAC1D,CAAC"}
1
+ {"version":3,"file":"TableBasic.types.d.ts","sourceRoot":"","sources":["../../../src/lib/organisms/TableBasic/TableBasic.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAExD,MAAM,MAAM,aAAa,GAAG,KAAK,GAAG,MAAM,GAAG,IAAI,CAAC;AAClD,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,MAAM,CAAC;AAEvC,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI;IACvB,MAAM,EAAE,MAAM,CAAC,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;IACnB,IAAI,CAAC,EAAE,QAAQ,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACvB,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,IAAI,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI;IACvB,GAAG,EAAE,MAAM,CAAC,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI;IACpD,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;IACxB,aAAa,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IACrC,SAAS,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACzB,UAAU,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC,CAAC;IAChB,aAAa,CAAC,EAAE,YAAY,EAAE,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,iBAAiB,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,KAAK,IAAI,CAAC;CAC1D,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "do-ui-design-system",
3
- "version": "1.1.16",
3
+ "version": "1.1.17",
4
4
  "description": "Design system en Svelte + CSS + Storybook",
5
5
  "author": "Data Observatory",
6
6
  "license": "MIT",