@firecms/ui 3.0.0-tw4.14 → 3.0.0-tw4.15

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/index.css CHANGED
@@ -1,6 +1,7 @@
1
1
  @theme {
2
2
  /* Font Families */
3
3
  --font-sans: 'Rubik', 'Roboto', 'Helvetica', 'Arial', sans-serif;
4
+ --font-headers: 'Rubik', 'Roboto', 'Helvetica', 'Arial', sans-serif;
4
5
  --font-mono: 'JetBrains Mono', 'Space Mono', 'Lucida Console', monospace;
5
6
 
6
7
  /* Colors */
@@ -53,74 +54,72 @@
53
54
  --color-surface-accent-950: #020617;
54
55
  }
55
56
 
56
- @utilities {
57
- /* Chrome, Safari and Opera */
58
- .no-scrollbar::-webkit-scrollbar {
59
- display: none;
60
- }
61
-
62
- .no-scrollbar {
63
- -ms-overflow-style: none; /* IE and Edge */
64
- scrollbar-width: none; /* Firefox */
65
- }
57
+ /* Chrome, Safari and Opera */
58
+ .no-scrollbar::-webkit-scrollbar {
59
+ display: none;
60
+ }
66
61
 
67
- .typography-h1 {
68
- @apply text-6xl font-light tracking-tight;
69
- }
62
+ .no-scrollbar {
63
+ -ms-overflow-style: none; /* IE and Edge */
64
+ scrollbar-width: none; /* Firefox */
65
+ }
70
66
 
71
- .typography-h2 {
72
- @apply text-5xl font-light tracking-tight;
73
- }
67
+ .typography-h1 {
68
+ @apply text-6xl font-headers font-light tracking-tight;
69
+ }
74
70
 
75
- .typography-h3 {
76
- @apply text-4xl font-normal tracking-tight;
77
- }
71
+ .typography-h2 {
72
+ @apply text-5xl font-headers font-light tracking-tight;
73
+ }
78
74
 
79
- .typography-h4 {
80
- @apply text-3xl font-normal tracking-tight;
81
- }
75
+ .typography-h3 {
76
+ @apply text-4xl font-headers font-normal tracking-tight;
77
+ }
82
78
 
83
- .typography-h5 {
84
- @apply text-2xl font-normal;
85
- }
79
+ .typography-h4 {
80
+ @apply text-3xl font-headers font-normal tracking-tight;
81
+ }
86
82
 
87
- .typography-h6 {
88
- @apply text-xl font-medium;
89
- }
83
+ .typography-h5 {
84
+ @apply text-2xl font-headers font-normal;
85
+ }
90
86
 
91
- .typography-subtitle1 {
92
- @apply text-lg font-medium;
93
- }
87
+ .typography-h6 {
88
+ @apply text-xl font-headers font-medium;
89
+ }
94
90
 
95
- .typography-subtitle2 {
96
- @apply text-base font-medium;
97
- }
91
+ .typography-subtitle1 {
92
+ @apply text-lg font-headers font-medium;
93
+ }
98
94
 
99
- .typography-body1 {
100
- }
95
+ .typography-subtitle2 {
96
+ @apply text-base font-headers font-medium;
97
+ }
101
98
 
102
- .typography-body2 {
103
- @apply text-sm;
104
- }
99
+ .typography-body1 {
100
+ }
105
101
 
106
- .typography-caption {
107
- @apply text-xs;
108
- }
102
+ .typography-body2 {
103
+ @apply text-sm;
104
+ }
109
105
 
110
- .typography-label {
111
- @apply text-sm font-medium;
112
- }
106
+ .typography-caption {
107
+ @apply text-xs;
108
+ }
113
109
 
114
- .typography-inherit {
115
- @apply text-inherit;
116
- }
110
+ .typography-label {
111
+ @apply text-sm font-medium;
112
+ }
117
113
 
118
- .typography-button {
119
- @apply text-sm font-semibold uppercase;
120
- }
114
+ .typography-inherit {
115
+ @apply text-inherit;
116
+ }
121
117
 
122
- :focus-visible {
123
- @apply outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 focus-visible:ring-offset-transparent
124
- }
118
+ .typography-button {
119
+ @apply text-sm font-semibold uppercase;
120
+ }
125
121
 
122
+ :focus-visible {
123
+ @apply outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 focus-visible:ring-offset-transparent
126
124
  }
125
+
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@firecms/ui",
3
3
  "type": "module",
4
- "version": "3.0.0-tw4.14",
4
+ "version": "3.0.0-tw4.15",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -115,7 +115,7 @@
115
115
  "index.css",
116
116
  "tailwind.config.js"
117
117
  ],
118
- "gitHead": "03f44ac3ef2ace7165c53b2fea23ff5eaa23c50a",
118
+ "gitHead": "686c69aeb9d6686e9882c4ece11eb0064b51a84a",
119
119
  "publishConfig": {
120
120
  "access": "public"
121
121
  }
package/src/index.css CHANGED
@@ -1,6 +1,7 @@
1
1
  @theme {
2
2
  /* Font Families */
3
3
  --font-sans: 'Rubik', 'Roboto', 'Helvetica', 'Arial', sans-serif;
4
+ --font-headers: 'Rubik', 'Roboto', 'Helvetica', 'Arial', sans-serif;
4
5
  --font-mono: 'JetBrains Mono', 'Space Mono', 'Lucida Console', monospace;
5
6
 
6
7
  /* Colors */
@@ -53,74 +54,72 @@
53
54
  --color-surface-accent-950: #020617;
54
55
  }
55
56
 
56
- @utilities {
57
- /* Chrome, Safari and Opera */
58
- .no-scrollbar::-webkit-scrollbar {
59
- display: none;
60
- }
61
-
62
- .no-scrollbar {
63
- -ms-overflow-style: none; /* IE and Edge */
64
- scrollbar-width: none; /* Firefox */
65
- }
57
+ /* Chrome, Safari and Opera */
58
+ .no-scrollbar::-webkit-scrollbar {
59
+ display: none;
60
+ }
66
61
 
67
- .typography-h1 {
68
- @apply text-6xl font-light tracking-tight;
69
- }
62
+ .no-scrollbar {
63
+ -ms-overflow-style: none; /* IE and Edge */
64
+ scrollbar-width: none; /* Firefox */
65
+ }
70
66
 
71
- .typography-h2 {
72
- @apply text-5xl font-light tracking-tight;
73
- }
67
+ .typography-h1 {
68
+ @apply text-6xl font-headers font-light tracking-tight;
69
+ }
74
70
 
75
- .typography-h3 {
76
- @apply text-4xl font-normal tracking-tight;
77
- }
71
+ .typography-h2 {
72
+ @apply text-5xl font-headers font-light tracking-tight;
73
+ }
78
74
 
79
- .typography-h4 {
80
- @apply text-3xl font-normal tracking-tight;
81
- }
75
+ .typography-h3 {
76
+ @apply text-4xl font-headers font-normal tracking-tight;
77
+ }
82
78
 
83
- .typography-h5 {
84
- @apply text-2xl font-normal;
85
- }
79
+ .typography-h4 {
80
+ @apply text-3xl font-headers font-normal tracking-tight;
81
+ }
86
82
 
87
- .typography-h6 {
88
- @apply text-xl font-medium;
89
- }
83
+ .typography-h5 {
84
+ @apply text-2xl font-headers font-normal;
85
+ }
90
86
 
91
- .typography-subtitle1 {
92
- @apply text-lg font-medium;
93
- }
87
+ .typography-h6 {
88
+ @apply text-xl font-headers font-medium;
89
+ }
94
90
 
95
- .typography-subtitle2 {
96
- @apply text-base font-medium;
97
- }
91
+ .typography-subtitle1 {
92
+ @apply text-lg font-headers font-medium;
93
+ }
98
94
 
99
- .typography-body1 {
100
- }
95
+ .typography-subtitle2 {
96
+ @apply text-base font-headers font-medium;
97
+ }
101
98
 
102
- .typography-body2 {
103
- @apply text-sm;
104
- }
99
+ .typography-body1 {
100
+ }
105
101
 
106
- .typography-caption {
107
- @apply text-xs;
108
- }
102
+ .typography-body2 {
103
+ @apply text-sm;
104
+ }
109
105
 
110
- .typography-label {
111
- @apply text-sm font-medium;
112
- }
106
+ .typography-caption {
107
+ @apply text-xs;
108
+ }
113
109
 
114
- .typography-inherit {
115
- @apply text-inherit;
116
- }
110
+ .typography-label {
111
+ @apply text-sm font-medium;
112
+ }
117
113
 
118
- .typography-button {
119
- @apply text-sm font-semibold uppercase;
120
- }
114
+ .typography-inherit {
115
+ @apply text-inherit;
116
+ }
121
117
 
122
- :focus-visible {
123
- @apply outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 focus-visible:ring-offset-transparent
124
- }
118
+ .typography-button {
119
+ @apply text-sm font-semibold uppercase;
120
+ }
125
121
 
122
+ :focus-visible {
123
+ @apply outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 focus-visible:ring-offset-transparent
126
124
  }
125
+