@lemonppt/themes 0.1.4 → 0.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lemonppt/themes",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "homepage": "https://github.com/lemonforme/lemonPPT#readme",
29
29
  "dependencies": {
30
- "@lemonppt/core": "0.1.4"
30
+ "@lemonppt/core": "0.1.5"
31
31
  },
32
32
  "devDependencies": {
33
33
  "typescript": "^5.5.0"
@@ -1850,3 +1850,92 @@ body {
1850
1850
  color: var(--lp-secondary);
1851
1851
  margin-top: 4px;
1852
1852
  }
1853
+ .lp-chart-v2 {
1854
+ width: 100%;
1855
+ height: 100%;
1856
+ padding: 80px;
1857
+ background: var(--lp-surface);
1858
+ display: flex;
1859
+ flex-direction: column;
1860
+ }
1861
+
1862
+ .lp-chart-v2-header {
1863
+ margin-bottom: 40px;
1864
+ }
1865
+
1866
+ .lp-chart-v2-body {
1867
+ flex: 1;
1868
+ display: flex;
1869
+ align-items: center;
1870
+ justify-content: center;
1871
+ }
1872
+
1873
+ .lp-chart-v2-svg {
1874
+ width: 100%;
1875
+ max-width: 900px;
1876
+ height: auto;
1877
+ }
1878
+
1879
+ .lp-chart-v2-grid {
1880
+ stroke: var(--lp-border);
1881
+ stroke-width: 1;
1882
+ }
1883
+
1884
+ .lp-chart-v2-axis-text {
1885
+ fill: var(--lp-secondary);
1886
+ font-size: 12px;
1887
+ font-family: var(--lp-font-mono);
1888
+ }
1889
+
1890
+ .lp-chart-v2-bar {
1891
+ opacity: 0.9;
1892
+ }
1893
+
1894
+ .lp-chart-v2-legend-text {
1895
+ fill: var(--lp-secondary);
1896
+ font-size: 12px;
1897
+ font-family: var(--lp-font-body);
1898
+ }
1899
+ .lp-gallery-v2 {
1900
+ width: 100%;
1901
+ height: 100%;
1902
+ padding: 80px;
1903
+ background: var(--lp-surface);
1904
+ display: flex;
1905
+ flex-direction: column;
1906
+ }
1907
+
1908
+ .lp-gallery-v2-header {
1909
+ margin-bottom: 40px;
1910
+ }
1911
+
1912
+ .lp-gallery-v2-grid {
1913
+ display: grid;
1914
+ grid-template-columns: repeat(3, 1fr);
1915
+ gap: 24px;
1916
+ flex: 1;
1917
+ align-content: start;
1918
+ }
1919
+
1920
+ .lp-gallery-v2-item {
1921
+ display: flex;
1922
+ flex-direction: column;
1923
+ gap: 10px;
1924
+ }
1925
+
1926
+ .lp-gallery-v2-item img,
1927
+ .lp-gallery-v2-placeholder {
1928
+ width: 100%;
1929
+ aspect-ratio: 16 / 10;
1930
+ object-fit: cover;
1931
+ border-radius: var(--lp-radius-medium);
1932
+ background: var(--lp-bg);
1933
+ border: 1px solid var(--lp-border);
1934
+ }
1935
+
1936
+ .lp-gallery-v2-caption {
1937
+ font-size: 14px;
1938
+ color: var(--lp-secondary);
1939
+ text-align: center;
1940
+ line-height: 1.4;
1941
+ }
@@ -1869,3 +1869,92 @@ body {
1869
1869
  color: var(--lp-secondary);
1870
1870
  margin-top: 4px;
1871
1871
  }
1872
+ .lp-chart-v2 {
1873
+ width: 100%;
1874
+ height: 100%;
1875
+ padding: 80px;
1876
+ background: var(--lp-surface);
1877
+ display: flex;
1878
+ flex-direction: column;
1879
+ }
1880
+
1881
+ .lp-chart-v2-header {
1882
+ margin-bottom: 40px;
1883
+ }
1884
+
1885
+ .lp-chart-v2-body {
1886
+ flex: 1;
1887
+ display: flex;
1888
+ align-items: center;
1889
+ justify-content: center;
1890
+ }
1891
+
1892
+ .lp-chart-v2-svg {
1893
+ width: 100%;
1894
+ max-width: 900px;
1895
+ height: auto;
1896
+ }
1897
+
1898
+ .lp-chart-v2-grid {
1899
+ stroke: var(--lp-border);
1900
+ stroke-width: 1;
1901
+ }
1902
+
1903
+ .lp-chart-v2-axis-text {
1904
+ fill: var(--lp-secondary);
1905
+ font-size: 12px;
1906
+ font-family: var(--lp-font-mono);
1907
+ }
1908
+
1909
+ .lp-chart-v2-bar {
1910
+ opacity: 0.9;
1911
+ }
1912
+
1913
+ .lp-chart-v2-legend-text {
1914
+ fill: var(--lp-secondary);
1915
+ font-size: 12px;
1916
+ font-family: var(--lp-font-body);
1917
+ }
1918
+ .lp-gallery-v2 {
1919
+ width: 100%;
1920
+ height: 100%;
1921
+ padding: 80px;
1922
+ background: var(--lp-surface);
1923
+ display: flex;
1924
+ flex-direction: column;
1925
+ }
1926
+
1927
+ .lp-gallery-v2-header {
1928
+ margin-bottom: 40px;
1929
+ }
1930
+
1931
+ .lp-gallery-v2-grid {
1932
+ display: grid;
1933
+ grid-template-columns: repeat(3, 1fr);
1934
+ gap: 24px;
1935
+ flex: 1;
1936
+ align-content: start;
1937
+ }
1938
+
1939
+ .lp-gallery-v2-item {
1940
+ display: flex;
1941
+ flex-direction: column;
1942
+ gap: 10px;
1943
+ }
1944
+
1945
+ .lp-gallery-v2-item img,
1946
+ .lp-gallery-v2-placeholder {
1947
+ width: 100%;
1948
+ aspect-ratio: 16 / 10;
1949
+ object-fit: cover;
1950
+ border-radius: var(--lp-radius-medium);
1951
+ background: var(--lp-bg);
1952
+ border: 1px solid var(--lp-border);
1953
+ }
1954
+
1955
+ .lp-gallery-v2-caption {
1956
+ font-size: 14px;
1957
+ color: var(--lp-secondary);
1958
+ text-align: center;
1959
+ line-height: 1.4;
1960
+ }
@@ -1861,3 +1861,92 @@ body {
1861
1861
  color: var(--lp-secondary);
1862
1862
  margin-top: 4px;
1863
1863
  }
1864
+ .lp-chart-v2 {
1865
+ width: 100%;
1866
+ height: 100%;
1867
+ padding: 80px;
1868
+ background: var(--lp-surface);
1869
+ display: flex;
1870
+ flex-direction: column;
1871
+ }
1872
+
1873
+ .lp-chart-v2-header {
1874
+ margin-bottom: 40px;
1875
+ }
1876
+
1877
+ .lp-chart-v2-body {
1878
+ flex: 1;
1879
+ display: flex;
1880
+ align-items: center;
1881
+ justify-content: center;
1882
+ }
1883
+
1884
+ .lp-chart-v2-svg {
1885
+ width: 100%;
1886
+ max-width: 900px;
1887
+ height: auto;
1888
+ }
1889
+
1890
+ .lp-chart-v2-grid {
1891
+ stroke: var(--lp-border);
1892
+ stroke-width: 1;
1893
+ }
1894
+
1895
+ .lp-chart-v2-axis-text {
1896
+ fill: var(--lp-secondary);
1897
+ font-size: 12px;
1898
+ font-family: var(--lp-font-mono);
1899
+ }
1900
+
1901
+ .lp-chart-v2-bar {
1902
+ opacity: 0.9;
1903
+ }
1904
+
1905
+ .lp-chart-v2-legend-text {
1906
+ fill: var(--lp-secondary);
1907
+ font-size: 12px;
1908
+ font-family: var(--lp-font-body);
1909
+ }
1910
+ .lp-gallery-v2 {
1911
+ width: 100%;
1912
+ height: 100%;
1913
+ padding: 80px;
1914
+ background: var(--lp-surface);
1915
+ display: flex;
1916
+ flex-direction: column;
1917
+ }
1918
+
1919
+ .lp-gallery-v2-header {
1920
+ margin-bottom: 40px;
1921
+ }
1922
+
1923
+ .lp-gallery-v2-grid {
1924
+ display: grid;
1925
+ grid-template-columns: repeat(3, 1fr);
1926
+ gap: 24px;
1927
+ flex: 1;
1928
+ align-content: start;
1929
+ }
1930
+
1931
+ .lp-gallery-v2-item {
1932
+ display: flex;
1933
+ flex-direction: column;
1934
+ gap: 10px;
1935
+ }
1936
+
1937
+ .lp-gallery-v2-item img,
1938
+ .lp-gallery-v2-placeholder {
1939
+ width: 100%;
1940
+ aspect-ratio: 16 / 10;
1941
+ object-fit: cover;
1942
+ border-radius: var(--lp-radius-medium);
1943
+ background: var(--lp-bg);
1944
+ border: 1px solid var(--lp-border);
1945
+ }
1946
+
1947
+ .lp-gallery-v2-caption {
1948
+ font-size: 14px;
1949
+ color: var(--lp-secondary);
1950
+ text-align: center;
1951
+ line-height: 1.4;
1952
+ }