@trebired/frontend 4.0.0 → 4.0.1

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.
Files changed (61) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/config/module.d.ts.map +1 -1
  3. package/dist/config/module.js +3 -2
  4. package/dist/config/module.js.map +1 -1
  5. package/dist/config/normalize.d.ts +1 -1
  6. package/dist/config/normalize.d.ts.map +1 -1
  7. package/dist/config/normalize.js +2 -1
  8. package/dist/config/normalize.js.map +1 -1
  9. package/dist/config/package.d.ts +4 -0
  10. package/dist/config/package.d.ts.map +1 -0
  11. package/dist/config/package.js +35 -0
  12. package/dist/config/package.js.map +1 -0
  13. package/dist/flash/components/index.d.ts.map +1 -1
  14. package/dist/flash/components/index.js +3 -8
  15. package/dist/flash/components/index.js.map +1 -1
  16. package/dist/flash/elements.d.ts.map +1 -1
  17. package/dist/flash/elements.js +4 -1
  18. package/dist/flash/elements.js.map +1 -1
  19. package/dist/flash/icons.d.ts +5 -0
  20. package/dist/flash/icons.d.ts.map +1 -0
  21. package/dist/flash/icons.js +16 -0
  22. package/dist/flash/icons.js.map +1 -0
  23. package/dist/flash/styles/index.scss +4 -30
  24. package/dist/logging/index.d.ts +2 -2
  25. package/dist/logging/index.d.ts.map +1 -1
  26. package/dist/logging/index.js +2 -3
  27. package/dist/logging/index.js.map +1 -1
  28. package/dist/src/config/module.d.ts.map +1 -1
  29. package/dist/src/config/module.js +3 -2
  30. package/dist/src/config/module.js.map +1 -1
  31. package/dist/src/config/normalize.d.ts +1 -1
  32. package/dist/src/config/normalize.d.ts.map +1 -1
  33. package/dist/src/config/normalize.js +2 -1
  34. package/dist/src/config/normalize.js.map +1 -1
  35. package/dist/src/config/package.d.ts +4 -0
  36. package/dist/src/config/package.d.ts.map +1 -0
  37. package/dist/src/config/package.js +35 -0
  38. package/dist/src/config/package.js.map +1 -0
  39. package/dist/src/flash/components/index.d.ts.map +1 -1
  40. package/dist/src/flash/components/index.js +3 -8
  41. package/dist/src/flash/components/index.js.map +1 -1
  42. package/dist/src/flash/elements.d.ts.map +1 -1
  43. package/dist/src/flash/elements.js +4 -1
  44. package/dist/src/flash/elements.js.map +1 -1
  45. package/dist/src/flash/icons.d.ts +5 -0
  46. package/dist/src/flash/icons.d.ts.map +1 -0
  47. package/dist/src/flash/icons.js +16 -0
  48. package/dist/src/flash/icons.js.map +1 -0
  49. package/dist/src/logging/index.d.ts +2 -2
  50. package/dist/src/logging/index.d.ts.map +1 -1
  51. package/dist/src/logging/index.js +2 -3
  52. package/dist/src/logging/index.js.map +1 -1
  53. package/dist/styles/utils/alignment.scss +93 -0
  54. package/dist/styles/utils/base.scss +337 -0
  55. package/dist/styles/utils/layout-grid.scss +45 -0
  56. package/dist/styles/utils/spacing/block.scss +59 -0
  57. package/dist/styles/utils/spacing/inline.scss +71 -0
  58. package/dist/styles/utils/text/core.scss +49 -0
  59. package/dist/styles/utils/text/extra.scss +54 -0
  60. package/dist/styles/utils.scss +7 -714
  61. package/package.json +1 -1
@@ -0,0 +1,59 @@
1
+ .gap-xs2 {
2
+ gap: var(--tbf-gap-xs2);
3
+ }
4
+
5
+ .gap-xs {
6
+ gap: var(--tbf-gap-xs);
7
+ }
8
+
9
+ .gap-sm {
10
+ gap: var(--tbf-gap-sm);
11
+ }
12
+
13
+ .gap-md {
14
+ gap: var(--tbf-gap-md);
15
+ }
16
+
17
+ .gap-lg {
18
+ gap: var(--tbf-gap-lg);
19
+ }
20
+
21
+ .mt-xs {
22
+ margin-top: var(--tbf-gap-xs);
23
+ }
24
+
25
+ .mt-xs2 {
26
+ margin-top: var(--tbf-gap-xs2);
27
+ }
28
+
29
+ .mt-sm {
30
+ margin-top: var(--tbf-gap-sm);
31
+ }
32
+
33
+ .mt-md {
34
+ margin-top: var(--tbf-gap-md);
35
+ }
36
+
37
+ .mt-lg {
38
+ margin-top: var(--tbf-gap-lg);
39
+ }
40
+
41
+ .mb-xs {
42
+ margin-bottom: var(--tbf-gap-xs);
43
+ }
44
+
45
+ .mb-xs2 {
46
+ margin-bottom: var(--tbf-gap-xs2);
47
+ }
48
+
49
+ .mb-sm {
50
+ margin-bottom: var(--tbf-gap-sm);
51
+ }
52
+
53
+ .mb-md {
54
+ margin-bottom: var(--tbf-gap-md);
55
+ }
56
+
57
+ .mb-lg {
58
+ margin-bottom: var(--tbf-gap-lg);
59
+ }
@@ -0,0 +1,71 @@
1
+ .ml-xs {
2
+ margin-left: var(--tbf-gap-xs);
3
+ }
4
+
5
+ .ml-xs2 {
6
+ margin-left: var(--tbf-gap-xs2);
7
+ }
8
+
9
+ .ml-sm {
10
+ margin-left: var(--tbf-gap-sm);
11
+ }
12
+
13
+ .ml-md {
14
+ margin-left: var(--tbf-gap-md);
15
+ }
16
+
17
+ .ml-lg {
18
+ margin-left: var(--tbf-gap-lg);
19
+ }
20
+
21
+ .mr-xs {
22
+ margin-right: var(--tbf-gap-xs);
23
+ }
24
+
25
+ .mr-xs2 {
26
+ margin-right: var(--tbf-gap-xs2);
27
+ }
28
+
29
+ .mr-sm {
30
+ margin-right: var(--tbf-gap-sm);
31
+ }
32
+
33
+ .mr-md {
34
+ margin-right: var(--tbf-gap-md);
35
+ }
36
+
37
+ .mr-lg {
38
+ margin-right: var(--tbf-gap-lg);
39
+ }
40
+
41
+ .border {
42
+ border: var(--tbf-border-width) solid var(--tbf-border);
43
+ }
44
+
45
+ .border-0 {
46
+ border: 0;
47
+ }
48
+
49
+ .border-top {
50
+ border-top: var(--tbf-border-width) solid var(--tbf-border);
51
+ }
52
+
53
+ .border-bottom {
54
+ border-bottom: var(--tbf-border-width) solid var(--tbf-border);
55
+ }
56
+
57
+ .border-left {
58
+ border-left: var(--tbf-border-width) solid var(--tbf-border);
59
+ }
60
+
61
+ .border-right {
62
+ border-right: var(--tbf-border-width) solid var(--tbf-border);
63
+ }
64
+
65
+ .border-block {
66
+ border-block: var(--tbf-border-width) solid var(--tbf-border);
67
+ }
68
+
69
+ .border-inline {
70
+ border-inline: var(--tbf-border-width) solid var(--tbf-border);
71
+ }
@@ -0,0 +1,49 @@
1
+ .width-max {
2
+ width: 100% !important;
3
+ max-width: 100% !important;
4
+ }
5
+
6
+ .width-fit {
7
+ width: fit-content !important;
8
+ max-width: 100% !important;
9
+ }
10
+
11
+ .text-muted {
12
+ color: var(--tbf-text-muted, #000);
13
+ }
14
+
15
+ .text-xs {
16
+ font-size: 12px;
17
+ }
18
+
19
+ .text-sm,
20
+ .text-small {
21
+ font-size: 14px;
22
+ }
23
+
24
+ .text-md {
25
+ font-size: 16px;
26
+ }
27
+
28
+ .text-lg {
29
+ font-size: 20px;
30
+ }
31
+
32
+ .text-break {
33
+ min-width: 0;
34
+ max-width: 100%;
35
+ overflow-wrap: anywhere;
36
+ word-break: break-word;
37
+ }
38
+
39
+ .truncate-1 {
40
+ min-width: 0;
41
+ overflow: hidden;
42
+ text-overflow: ellipsis;
43
+ white-space: nowrap;
44
+ }
45
+
46
+ .no-select {
47
+ -webkit-user-select: none;
48
+ user-select: none;
49
+ }
@@ -0,0 +1,54 @@
1
+ .text-break-word {
2
+ min-width: 0;
3
+ max-width: 100%;
4
+ white-space: normal;
5
+ overflow-wrap: break-word;
6
+ word-break: normal;
7
+ hyphens: auto;
8
+ }
9
+
10
+ .font-italic {
11
+ font-style: italic;
12
+ }
13
+
14
+ .font-mono {
15
+ font-family:
16
+ ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
17
+ "Courier New", monospace;
18
+ word-break: break-all;
19
+ }
20
+
21
+ .font-bold {
22
+ font-weight: bold;
23
+ }
24
+
25
+ .label {
26
+ color: var(--tbf-text-muted, #000);
27
+ font-size: 14px;
28
+ }
29
+
30
+ .bg-canvas {
31
+ background: var(--tbf-canvas-bg, var(--dot-grid)) !important;
32
+ }
33
+
34
+ .pre-wrap {
35
+ white-space: pre-wrap !important;
36
+ }
37
+
38
+ .bg-transparent {
39
+ background-color: transparent;
40
+ }
41
+
42
+ .cursor-pointer {
43
+ cursor: pointer;
44
+ }
45
+
46
+ .cursor-auto {
47
+ cursor: auto;
48
+ }
49
+
50
+ .cursor-disabled,
51
+ .disabled,
52
+ [disabled] {
53
+ cursor: not-allowed;
54
+ }