@saasquatch/squatch-js 2.8.2-22 → 2.8.2-23

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/squatch.js CHANGED
@@ -1864,351 +1864,6 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
1864
1864
  }
1865
1865
  };
1866
1866
  }
1867
- const getSkeleton = ({
1868
- height = "500px",
1869
- skeletonBackgroundColor = "#e0e0e0",
1870
- skeletonShimmerColor = "#f5f5f5",
1871
- borderColor = "#ccc"
1872
- }) => {
1873
- return `
1874
- <style>
1875
- * {
1876
- box-sizing: border-box;
1877
- padding: 0;
1878
- margin: 0;
1879
- }
1880
-
1881
- .widget-container {
1882
- background: white;
1883
- width: 100%;
1884
- max-width: 900px;
1885
- padding: 40px;
1886
- border-radius: 12px;
1887
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
1888
- box-sizing: border-box;
1889
- }
1890
-
1891
- @keyframes shimmer {
1892
- 0% {
1893
- background-position: -100% 0;
1894
- }
1895
- 100% {
1896
- background-position: 100% 0;
1897
- }
1898
- }
1899
-
1900
- .skeleton {
1901
- background: ${skeletonBackgroundColor};
1902
- background: linear-gradient(
1903
- 90deg,
1904
- ${skeletonBackgroundColor} 25%,
1905
- ${skeletonShimmerColor} 50%,
1906
- ${skeletonBackgroundColor} 75%
1907
- );
1908
- background-size: 200% 100%;
1909
- animation: shimmer 1.5s infinite linear;
1910
- border-radius: 6px;
1911
- margin-bottom: 12px;
1912
- }
1913
-
1914
- .sk-title-lg {
1915
- height: 36px;
1916
- width: 50%;
1917
- margin-bottom: 16px;
1918
- }
1919
- .sk-title-md {
1920
- height: 28px;
1921
- width: 30%;
1922
- margin-bottom: 20px;
1923
- margin-top: 40px;
1924
- }
1925
- .sk-text {
1926
- height: 16px;
1927
- width: 80%;
1928
- margin-bottom: 8px;
1929
- }
1930
- .sk-text-short {
1931
- width: 40%;
1932
- }
1933
- .sk-label {
1934
- height: 14px;
1935
- width: 25%;
1936
- margin-bottom: 10px;
1937
- }
1938
-
1939
- .hero-section {
1940
- display: flex;
1941
- gap: 40px;
1942
- margin-bottom: 40px;
1943
- border-bottom: 1px solid ${borderColor};
1944
- padding-bottom: 40px;
1945
- flex-direction: row;
1946
- }
1947
- .hero-content {
1948
- flex: 1;
1949
- display: flex;
1950
- flex-direction: column;
1951
- justify-content: center;
1952
- }
1953
- .hero-image {
1954
- flex: 1;
1955
- height: 300px;
1956
- border-radius: 12px;
1957
- }
1958
-
1959
- .share-section {
1960
- margin-bottom: 40px;
1961
- }
1962
- .sk-input {
1963
- height: 50px;
1964
- width: 100%;
1965
- border-radius: 8px;
1966
- margin-bottom: 16px;
1967
- }
1968
- .social-buttons {
1969
- display: flex;
1970
- gap: 12px;
1971
- }
1972
- .sk-btn-social {
1973
- flex: 1;
1974
- height: 50px;
1975
- border-radius: 8px;
1976
- }
1977
-
1978
- .stats-section {
1979
- display: flex;
1980
- gap: 24px;
1981
- margin-bottom: 40px;
1982
- padding: 30px 0;
1983
- border-top: 1px solid ${borderColor};
1984
- border-bottom: 1px solid ${borderColor};
1985
- }
1986
- .stat-card {
1987
- flex: 1;
1988
- display: flex;
1989
- flex-direction: column;
1990
- align-items: center;
1991
- }
1992
- .stat-divider {
1993
- padding-left: 24px;
1994
- }
1995
-
1996
- .sk-stat-num {
1997
- height: 48px;
1998
- width: 120px;
1999
- margin-bottom: 8px;
2000
- }
2001
- .sk-stat-label {
2002
- height: 18px;
2003
- width: 80px;
2004
- }
2005
-
2006
- .table-header {
2007
- display: flex;
2008
- gap: 16px;
2009
- margin-bottom: 16px;
2010
- }
2011
- .sk-th {
2012
- height: 16px;
2013
- }
2014
- .table-row {
2015
- display: flex;
2016
- align-items: center;
2017
- gap: 16px;
2018
- padding: 16px 0;
2019
- border-bottom: 1px solid ${borderColor};
2020
- }
2021
-
2022
- .col-user {
2023
- flex: 2;
2024
- }
2025
- .col-status {
2026
- flex: 1;
2027
- }
2028
- .col-reward {
2029
- flex: 2;
2030
- }
2031
- .col-date {
2032
- flex: 1;
2033
- }
2034
-
2035
- .sk-badge {
2036
- height: 28px;
2037
- width: 90px;
2038
- border-radius: 14px;
2039
- }
2040
- .sk-reward-block {
2041
- height: 36px;
2042
- width: 100%;
2043
- border-radius: 6px;
2044
- }
2045
-
2046
- .pagination {
2047
- display: flex;
2048
- justify-content: flex-end;
2049
- gap: 8px;
2050
- margin-top: 24px;
2051
- }
2052
- .sk-btn-page {
2053
- height: 36px;
2054
- width: 64px;
2055
- border-radius: 6px;
2056
- margin-bottom: 0;
2057
- }
2058
-
2059
- @media (max-width: 768px) {
2060
- body {
2061
- padding: 20px;
2062
- }
2063
- .widget-container {
2064
- padding: 24px;
2065
- }
2066
-
2067
- .hero-section {
2068
- flex-direction: column-reverse;
2069
- gap: 24px;
2070
- }
2071
- .hero-image {
2072
- height: 220px;
2073
- width: 100%;
2074
- }
2075
- .sk-title-lg {
2076
- width: 80%;
2077
- }
2078
-
2079
- .col-date {
2080
- display: none;
2081
- }
2082
- }
2083
-
2084
- @media (max-width: 480px) {
2085
- body {
2086
- padding: 10px;
2087
- }
2088
- .widget-container {
2089
- padding: 16px;
2090
- }
2091
-
2092
- .sk-stat-num {
2093
- width: 80px;
2094
- height: 40px;
2095
- }
2096
-
2097
- .col-reward {
2098
- display: none;
2099
- }
2100
-
2101
- .col-user {
2102
- flex: 3;
2103
- }
2104
- .col-status {
2105
- flex: 2;
2106
- display: flex;
2107
- justify-content: flex-end;
2108
- }
2109
- }
2110
- </style>
2111
-
2112
- <div class="widget-container">
2113
- <div class="hero-section">
2114
- <div class="hero-content">
2115
- <div class="skeleton sk-title-lg"></div>
2116
- <div class="skeleton sk-text"></div>
2117
- <div class="skeleton sk-text sk-text-short"></div>
2118
- </div>
2119
- <div class="skeleton hero-image"></div>
2120
- </div>
2121
-
2122
- <div class="share-section">
2123
- <div class="skeleton sk-label"></div>
2124
- <div class="skeleton sk-input"></div>
2125
- <div class="social-buttons">
2126
- <div class="skeleton sk-btn-social"></div>
2127
- <div class="skeleton sk-btn-social"></div>
2128
- <div class="skeleton sk-btn-social"></div>
2129
- <div class="skeleton sk-btn-social"></div>
2130
- </div>
2131
- </div>
2132
-
2133
- <div
2134
- class="skeleton sk-title-md"
2135
- style="margin-top: 0; width: 30%; margin-left: auto; margin-right: auto"
2136
- ></div>
2137
- <div
2138
- class="skeleton sk-text"
2139
- style="width: 60%; margin-left: auto; margin-right: auto"
2140
- ></div>
2141
-
2142
- <div class="stats-section">
2143
- <div class="stat-card">
2144
- <div class="skeleton sk-stat-num"></div>
2145
- <div class="skeleton sk-stat-label"></div>
2146
- </div>
2147
- <div class="stat-card stat-divider">
2148
- <div class="skeleton sk-stat-num"></div>
2149
- <div class="skeleton sk-stat-label"></div>
2150
- </div>
2151
- </div>
2152
-
2153
- <div class="skeleton sk-title-md"></div>
2154
-
2155
- <div class="table-header">
2156
- <div class="skeleton sk-th col-user"></div>
2157
- <div class="skeleton sk-th col-status"></div>
2158
- <div class="skeleton sk-th col-reward"></div>
2159
- <div class="skeleton sk-th col-date"></div>
2160
- </div>
2161
-
2162
- <div class="table-row">
2163
- <div class="col-user">
2164
- <div class="skeleton sk-text" style="width: 70%; margin: 0"></div>
2165
- </div>
2166
- <div class="col-status">
2167
- <div class="skeleton sk-badge" style="margin: 0"></div>
2168
- </div>
2169
- <div class="col-reward">
2170
- <div class="skeleton sk-reward-block" style="margin: 0"></div>
2171
- </div>
2172
- <div class="col-date">
2173
- <div class="skeleton sk-text" style="width: 80%; margin: 0"></div>
2174
- </div>
2175
- </div>
2176
- <div class="table-row">
2177
- <div class="col-user">
2178
- <div class="skeleton sk-text" style="width: 60%; margin: 0"></div>
2179
- </div>
2180
- <div class="col-status">
2181
- <div class="skeleton sk-badge" style="margin: 0"></div>
2182
- </div>
2183
- <div class="col-reward">
2184
- <div class="skeleton sk-reward-block" style="margin: 0"></div>
2185
- </div>
2186
- <div class="col-date">
2187
- <div class="skeleton sk-text" style="width: 80%; margin: 0"></div>
2188
- </div>
2189
- </div>
2190
- <div class="table-row">
2191
- <div class="col-user">
2192
- <div class="skeleton sk-text" style="width: 75%; margin: 0"></div>
2193
- </div>
2194
- <div class="col-status">
2195
- <div class="skeleton sk-badge" style="margin: 0"></div>
2196
- </div>
2197
- <div class="col-reward">
2198
- <div class="skeleton sk-reward-block" style="margin: 0"></div>
2199
- </div>
2200
- <div class="col-date">
2201
- <div class="skeleton sk-text" style="width: 80%; margin: 0"></div>
2202
- </div>
2203
- </div>
2204
-
2205
- <div class="pagination">
2206
- <div class="skeleton sk-btn-page"></div>
2207
- <div class="skeleton sk-btn-page"></div>
2208
- </div>
2209
- </div>
2210
- `;
2211
- };
2212
1867
  const _log$2 = browserExports.debug("squatch-js:decodeUserJwt");
2213
1868
  function decodeUserJwt(tokenStr) {
2214
1869
  var _a2;
@@ -2444,7 +2099,11 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
2444
2099
  async connectedCallback() {
2445
2100
  this.loaded = true;
2446
2101
  this.container = this.getAttribute("container");
2447
- const skeletonHTML = getSkeleton({});
2102
+ const skeletonHTML = `
2103
+ <div>
2104
+ <h1>Do I see this text ????</h1>
2105
+ </div>
2106
+ `;
2448
2107
  const skeletonContainer = document.createElement("div");
2449
2108
  skeletonContainer.id = "loading-skeleton";
2450
2109
  skeletonContainer.innerHTML = skeletonHTML;