@iroco/ui 0.15.1 → 0.15.2

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/lib/index.mjs.css CHANGED
@@ -1,6 +1,3 @@
1
- svg.svelte-1cuxg7m {
2
- overflow: visible; }
3
-
4
1
  .rotate.svelte-1dns1yx {
5
2
  animation: svelte-1dns1yx-rotation 2s; }
6
3
 
@@ -16,6 +13,9 @@ svg.svelte-1cuxg7m {
16
13
  to {
17
14
  transform: rotate(359deg); } }
18
15
 
16
+ svg.svelte-1cuxg7m {
17
+ overflow: visible; }
18
+
19
19
  .data-table.svelte-1ju5y8t {
20
20
  border: 1px solid #464452;
21
21
  width: 100%; }
@@ -327,6 +327,30 @@ input.svelte-1y0402x.svelte-1y0402x:focus {
327
327
  .iroco-ui-button.disabled.svelte-5qkkwb:hover {
328
328
  box-shadow: none; }
329
329
 
330
+ @use "colors";
331
+ @use "containers";
332
+ @use "fonts";
333
+ @use "forms";
334
+ @use "layouts";
335
+ .alert.svelte-itln7g {
336
+ min-height: 2em;
337
+ display: inline-flex;
338
+ align-items: center;
339
+ border-radius: 0.3em;
340
+ padding: 0 1em 0 1em;
341
+ font-size: 1.2em;
342
+ justify-content: center;
343
+ margin-bottom: 1em;
344
+ cursor: pointer; }
345
+
346
+ .alert--danger.svelte-itln7g {
347
+ background-color: rgba(255, 80, 77, 0.5);
348
+ border: 1px solid #ff504d; }
349
+
350
+ .alert--success.svelte-itln7g {
351
+ background-color: rgba(0, 214, 146, 0.5);
352
+ border: 1px solid #00D692; }
353
+
330
354
  .container-wide.svelte-1c8sozl.svelte-1c8sozl {
331
355
  width: calc(100% - 20px);
332
356
  max-width: 2360px;
@@ -539,27 +563,3 @@ input.svelte-1y0402x.svelte-1y0402x:focus {
539
563
  .nav__topbar__item.svelte-1c8sozl.svelte-1c8sozl {
540
564
  padding: 2em;
541
565
  border-top: 1px solid #464452; } }
542
-
543
- @use "colors";
544
- @use "containers";
545
- @use "fonts";
546
- @use "forms";
547
- @use "layouts";
548
- .alert.svelte-itln7g {
549
- min-height: 2em;
550
- display: inline-flex;
551
- align-items: center;
552
- border-radius: 0.3em;
553
- padding: 0 1em 0 1em;
554
- font-size: 1.2em;
555
- justify-content: center;
556
- margin-bottom: 1em;
557
- cursor: pointer; }
558
-
559
- .alert--danger.svelte-itln7g {
560
- background-color: rgba(255, 80, 77, 0.5);
561
- border: 1px solid #ff504d; }
562
-
563
- .alert--success.svelte-itln7g {
564
- background-color: rgba(0, 214, 146, 0.5);
565
- border: 1px solid #00D692; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iroco/ui",
3
- "version": "0.15.1",
3
+ "version": "0.15.2",
4
4
  "description": "Iroco design system based on Svelte",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.mjs",
package/src/index.ts CHANGED
@@ -14,3 +14,4 @@ export { default as IconMore } from './IconMoreSign.svelte'
14
14
  export { default as IconFloppyDisk } from './IconFloppyDisk.svelte'
15
15
  export { default as IconTrashCan } from './IconTrashCan.svelte'
16
16
  export { default as Alert } from './Alert.svelte'
17
+ export { default as IconIrocoLogo } from './IconIrocoLogo.svelte'