@steedos/webapp 3.0.4-beta.1 → 3.0.4-beta.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.
@@ -1,4 +1,4 @@
1
- import { c as commonjsGlobal, g as getDefaultExportFromCjs } from "./index-Be9ZfP7N.js";
1
+ import { c as commonjsGlobal, g as getDefaultExportFromCjs } from "./index-DfIlPMql.js";
2
2
  function _mergeNamespaces(n, m) {
3
3
  for (var i = 0; i < m.length; i++) {
4
4
  const e = m[i];
@@ -2011,48 +2011,233 @@ video {
2011
2011
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2012
2012
  }
2013
2013
 
2014
-
2015
- .creator-content-wrapper {
2016
- overflow: auto !important;
2017
- position: absolute;
2018
- top: 0;
2019
- right: 0;
2020
- bottom: 0;
2021
- left: 0;
2022
- margin-top: 50px;
2023
- }
2024
-
2025
- @media (min-width: 767px) {
2026
- .creator-content-wrapper {
2027
- height:calc(100% - 50px)
2028
- }
2029
-
2030
- .creator-content-wrapper>.builder-component{
2031
- height: 100%;
2032
- }
2033
-
2034
- .creator-content-wrapper>.builder-component>.builder-content{
2035
- height: 100%;
2036
- }
2037
-
2038
- .creator-content-wrapper>.builder-component>.builder-content>div{
2039
- height: 100%;
2040
- }
2041
-
2042
- .creator-content-wrapper>.builder-component>.builder-content>div>.builder-blocks{
2043
- height: 100%;
2044
- }
2045
-
2046
- .creator-content-wrapper>.builder-component>.builder-content>div>.builder-blocks>.builder-block{
2047
- height: 100%;
2048
- }
2049
- .creator-content-wrapper>.builder-component>.builder-content>div>.builder-blocks>.builder-block>.amis-scope{
2050
- height: 100%;
2051
- }
2052
- }
2053
-
2054
- .MuiSvgIcon-fontSizeSmall{
2055
- font-size: 1rem !important;
2014
+ :root {
2015
+ /* --color-- 基础色 Base --color-- */
2016
+ --color-inherit: inherit;
2017
+ --color-current: currentColor;
2018
+ --color-transparent: transparent;
2019
+ --color-black: #000000;
2020
+ --color-white: #ffffff;
2021
+
2022
+ --color-brand-50: #f0f9ff;
2023
+ --color-brand-100: #e0f2fe;
2024
+ --color-brand-200: #bae6fd;
2025
+ --color-brand-300: #7dd3fc;
2026
+ --color-brand-400: #38bdf8;
2027
+ --color-brand-500: #0ea5e9;
2028
+ --color-brand-600: #0284c7;
2029
+ --color-brand-700: #0369a1;
2030
+ --color-brand-800: #075985;
2031
+ --color-brand-900: #0c4a6e;
2032
+ --color-brand-950: #082f49;
2033
+
2034
+ --colors-brand-main: var(--color-brand-600);
2035
+ --colors-brand-1: var(--color-brand-900);
2036
+ --colors-brand-2: var(--color-brand-800);
2037
+ --colors-brand-3: var(--color-brand-700);
2038
+ --colors-brand-4: var(--color-brand-600);
2039
+ --colors-brand-5: var(--color-brand-500);
2040
+ --colors-brand-6: var(--color-brand-400);
2041
+ --colors-brand-7: var(--color-brand-300);
2042
+ --colors-brand-8: var(--color-brand-200);
2043
+ --colors-brand-9: var(--color-brand-100);
2044
+ --colors-brand-10: var(--color-brand-50);
2045
+
2046
+ --color-gray-25: #fcfcfd;
2047
+ --color-gray-50: #f9fafb;
2048
+ --color-gray-100: #f2f4f7;
2049
+ --color-gray-200: #e4e7ec;
2050
+ --color-gray-300: #d0d5dd;
2051
+ --color-gray-400: #98a2b3;
2052
+ --color-gray-500: #667085;
2053
+ --color-gray-600: #475467;
2054
+ --color-gray-700: #344054;
2055
+ --color-gray-800: #1d2939;
2056
+ --color-gray-900: #101828;
2057
+ --color-gray-950: #0c111d;
2058
+ --color-gray-dark: #1a2231;
2059
+
2060
+ /* --color-- 灰色系 (以 Slate 为例,最常用的冷灰) --color-- */
2061
+ --color-slate-50: #f8fafc;
2062
+ --color-slate-100: #f1f5f9;
2063
+ --color-slate-200: #e2e8f0;
2064
+ --color-slate-300: #cbd5e1;
2065
+ --color-slate-400: #94a3b8;
2066
+ --color-slate-500: #64748b;
2067
+ --color-slate-600: #475569;
2068
+ --color-slate-700: #334155;
2069
+ --color-slate-800: #1e293b;
2070
+ --color-slate-900: #0f172a;
2071
+ --color-slate-950: #020617;
2072
+
2073
+ /* --color-- 红色系 Red --color-- */
2074
+ --color-red-50: #fef2f2;
2075
+ --color-red-100: #fee2e2;
2076
+ --color-red-200: #fecaca;
2077
+ --color-red-300: #fca5a5;
2078
+ --color-red-400: #f87171;
2079
+ --color-red-500: #ef4444;
2080
+ --color-red-600: #dc2626;
2081
+ --color-red-700: #b91c1c;
2082
+ --color-red-800: #991b1b;
2083
+ --color-red-900: #7f1d1d;
2084
+ --color-red-950: #450a0a;
2085
+
2086
+ /* --color-- 橙色系 Orange --color-- */
2087
+ --color-orange-50: #fff7ed;
2088
+ --color-orange-100: #ffedd5;
2089
+ --color-orange-200: #fed7aa;
2090
+ --color-orange-300: #fdba74;
2091
+ --color-orange-400: #fb923c;
2092
+ --color-orange-500: #f97316;
2093
+ --color-orange-600: #ea580c;
2094
+ --color-orange-700: #c2410c;
2095
+ --color-orange-800: #9a3412;
2096
+ --color-orange-900: #7c2d12;
2097
+ --color-orange-950: #431407;
2098
+
2099
+ /* --color-- 黄色系 Amber (比 Yellow 更像交通灯黄) --color-- */
2100
+ --color-amber-50: #fffbeb;
2101
+ --color-amber-100: #fef3c7;
2102
+ --color-amber-200: #fde68a;
2103
+ --color-amber-300: #fcd34d;
2104
+ --color-amber-400: #fbbf24;
2105
+ --color-amber-500: #f59e0b;
2106
+ --color-amber-600: #d97706;
2107
+ --color-amber-700: #b45309;
2108
+ --color-amber-800: #92400e;
2109
+ --color-amber-900: #78350f;
2110
+ --color-amber-950: #451a03;
2111
+
2112
+ /* --color-- 黄色系 Yellow --color-- */
2113
+ --color-yellow-50: #fefce8;
2114
+ --color-yellow-100: #fef9c3;
2115
+ --color-yellow-200: #fef08a;
2116
+ --color-yellow-300: #fde047;
2117
+ --color-yellow-400: #facc15;
2118
+ --color-yellow-500: #eab308;
2119
+ --color-yellow-600: #ca8a04;
2120
+ --color-yellow-700: #a16207;
2121
+ --color-yellow-800: #854d0e;
2122
+ --color-yellow-900: #713f12;
2123
+ --color-yellow-950: #422006;
2124
+
2125
+ /* --color-- 绿色系 Green --color-- */
2126
+ --color-green-50: #f0fdf4;
2127
+ --color-green-100: #dcfce7;
2128
+ --color-green-200: #bbf7d0;
2129
+ --color-green-300: #86efac;
2130
+ --color-green-400: #4ade80;
2131
+ --color-green-500: #22c55e;
2132
+ --color-green-600: #16a34a;
2133
+ --color-green-700: #15803d;
2134
+ --color-green-800: #166534;
2135
+ --color-green-900: #14532d;
2136
+ --color-green-950: #052e16;
2137
+
2138
+ /* --color-- 翡翠绿 Emerald --color-- */
2139
+ --color-emerald-50: #ecfdf5;
2140
+ --color-emerald-100: #d1fae5;
2141
+ --color-emerald-200: #a7f3d0;
2142
+ --color-emerald-300: #6ee7b7;
2143
+ --color-emerald-400: #34d399;
2144
+ --color-emerald-500: #10b981;
2145
+ --color-emerald-600: #059669;
2146
+ --color-emerald-700: #047857;
2147
+ --color-emerald-800: #065f46;
2148
+ --color-emerald-900: #064e3b;
2149
+ --color-emerald-950: #022c22;
2150
+
2151
+ /* --color-- 蓝绿色 Teal --color-- */
2152
+ --color-teal-50: #f0fdfa;
2153
+ --color-teal-100: #ccfbf1;
2154
+ --color-teal-200: #99f6e4;
2155
+ --color-teal-300: #5eead4;
2156
+ --color-teal-400: #2dd4bf;
2157
+ --color-teal-500: #14b8a6;
2158
+ --color-teal-600: #0d9488;
2159
+ --color-teal-700: #0f766e;
2160
+ --color-teal-800: #115e59;
2161
+ --color-teal-900: #134e4a;
2162
+ --color-teal-950: #042f2e;
2163
+
2164
+ /* --color-- 天蓝色 Sky (Light Blue) --color-- */
2165
+ --color-sky-50: #f0f9ff;
2166
+ --color-sky-100: #e0f2fe;
2167
+ --color-sky-200: #bae6fd;
2168
+ --color-sky-300: #7dd3fc;
2169
+ --color-sky-400: #38bdf8;
2170
+ --color-sky-500: #0ea5e9;
2171
+ --color-sky-600: #0284c7;
2172
+ --color-sky-700: #0369a1;
2173
+ --color-sky-800: #075985;
2174
+ --color-sky-900: #0c4a6e;
2175
+ --color-sky-950: #082f49;
2176
+
2177
+ /* --color-- 蓝色系 Blue --color-- */
2178
+ --color-blue-50: #eff6ff;
2179
+ --color-blue-100: #dbeafe;
2180
+ --color-blue-200: #bfdbfe;
2181
+ --color-blue-300: #93c5fd;
2182
+ --color-blue-400: #60a5fa;
2183
+ --color-blue-500: #3b82f6;
2184
+ --color-blue-600: #2563eb;
2185
+ --color-blue-700: #1d4ed8;
2186
+ --color-blue-800: #1e40af;
2187
+ --color-blue-900: #1e3a8a;
2188
+ --color-blue-950: #172554;
2189
+
2190
+ /* --color-- 靛青色 Indigo --color-- */
2191
+ --color-indigo-50: #eef2ff;
2192
+ --color-indigo-100: #e0e7ff;
2193
+ --color-indigo-200: #c7d2fe;
2194
+ --color-indigo-300: #a5b4fc;
2195
+ --color-indigo-400: #818cf8;
2196
+ --color-indigo-500: #6366f1;
2197
+ --color-indigo-600: #4f46e5;
2198
+ --color-indigo-700: #4338ca;
2199
+ --color-indigo-800: #3730a3;
2200
+ --color-indigo-900: #312e81;
2201
+ --color-indigo-950: #1e1b4b;
2202
+
2203
+ /* --color-- 紫色系 Violet --color-- */
2204
+ --color-violet-50: #f5f3ff;
2205
+ --color-violet-100: #ede9fe;
2206
+ --color-violet-200: #ddd6fe;
2207
+ --color-violet-300: #c4b5fd;
2208
+ --color-violet-400: #a78bfa;
2209
+ --color-violet-500: #8b5cf6;
2210
+ --color-violet-600: #7c3aed;
2211
+ --color-violet-700: #6d28d9;
2212
+ --color-violet-800: #5b21b6;
2213
+ --color-violet-900: #4c1d95;
2214
+ --color-violet-950: #2e1065;
2215
+
2216
+ /* --color-- 紫红/粉色系 Fuchsia --color-- */
2217
+ --color-fuchsia-50: #fdf4ff;
2218
+ --color-fuchsia-100: #fae8ff;
2219
+ --color-fuchsia-200: #f5d0fe;
2220
+ --color-fuchsia-300: #f0abfc;
2221
+ --color-fuchsia-400: #e879f9;
2222
+ --color-fuchsia-500: #d946ef;
2223
+ --color-fuchsia-600: #c026d3;
2224
+ --color-fuchsia-700: #a21caf;
2225
+ --color-fuchsia-800: #86198f;
2226
+ --color-fuchsia-900: #701a75;
2227
+ --color-fuchsia-950: #4a044e;
2228
+
2229
+ /* --color-- 粉色系 Pink --color-- */
2230
+ --color-pink-50: #fdf2f8;
2231
+ --color-pink-100: #fce7f3;
2232
+ --color-pink-200: #fbcfe8;
2233
+ --color-pink-300: #f9a8d4;
2234
+ --color-pink-400: #f472b6;
2235
+ --color-pink-500: #ec4899;
2236
+ --color-pink-600: #db2777;
2237
+ --color-pink-700: #be185d;
2238
+ --color-pink-800: #9d174d;
2239
+ --color-pink-900: #831843;
2240
+ --color-pink-950: #500724;
2056
2241
  }
2057
2242
 
2058
2243
  .last\:mb-0:last-child {
@@ -2491,8 +2676,193 @@ video {
2491
2676
  grid-template-columns: repeat(5, minmax(0, 1fr));
2492
2677
  }
2493
2678
  }
2679
+ .steedos {
2680
+
2681
+ --body-bg: var(--color-gray-50);
2682
+ --body-color: var(--color-gray-900);
2683
+ --body-size: 14px;
2684
+ --link-color: var(--color-brand-600);
2685
+ --Page-main-bg: transparent;
2686
+ --Form-mode-default-labelGap: 2px;
2687
+ --Form-item-fontSize: 12px;
2688
+ --Form-item-fontColor: rgb(68, 68, 68);
2689
+ --Form-fontSize: 14px;
2690
+ --Form-selectValue-fontSize: 14px;
2691
+ --Form-item-gap: 0.75rem;
2692
+ --Form-select-outer-boxShadow: rgba(0, 0, 0, 0.12) 0px 0px 2px, rgba(0, 0, 0, 0.14) 0px 4px 8px;
2693
+ --Form-select-outer-borderWidth: 0;
2694
+ /* --Table-color: #303030; */
2695
+ /* --Table-thead-color: #303030; */
2696
+ --Table-borderColor: #e5e7eb;
2697
+ --Table-borderWidth: 1px;
2698
+ --Table-fontSize: 13px;
2699
+ --Table-fixedRight-boxShadow: none;
2700
+ --Table-thead-borderColor: rgb(209 213 219);
2701
+ --Table-thead-fontSize: 13px;
2702
+ --Table-thead-bg: white;
2703
+ --Table-thead-borderColor: var(--Table-borderColor);
2704
+ --Table-toolbar-marginY: 0;
2705
+ --Table-thead-borderWidth: 1px;
2706
+ --Table-bg: white;
2707
+ --TableCell-paddingY: 0.4rem;
2708
+ --TableCell-paddingX: 0.5rem;
2709
+ --TableCell--edge-paddingX: 0.5rem;
2710
+ --text--muted-color: #d9dcde;
2711
+ --Collapse-content-fontSize: 14px;
2712
+ --Collapse-border: 0;
2713
+ --Collapse-header-fontSize: 16px;
2714
+ --Collapse-header-fontWeight: 400;
2715
+ --Collapse-header-onHover-bg: #EEEEEE;
2716
+ --Collapse-header-padding: 4px;
2717
+ --Collapse-content-padding: 4px;
2718
+ --collapse-default-bg-color: unset;
2719
+ --Button-height: 2rem;
2720
+ --Button-paddingX: 16px;
2721
+ --button-size-default-top-right-border-radius: 0.25rem;
2722
+ --button-size-default-top-left-border-radius: 0.25rem;
2723
+ --button-size-default-bottom-right-border-radius: 0.25rem;
2724
+ --button-size-default-bottom-left-border-radius: 0.25rem;
2725
+ --button-size-default-marginRight: 4px;
2726
+
2727
+ --button-light-default-bg-color: transparent;
2728
+ --button-light-default-top-border-color: transparent;
2729
+ --button-light-default-bottom-border-color: transparent;
2730
+ --button-light-default-left-border-color: transparent;
2731
+ --button-light-default-right-border-color: transparent;
2732
+
2733
+ --button-default-default-bg-color: white;
2734
+ /* --button-default-hover-bg-color: rgb(245, 245, 245); */
2735
+ --button-default-default-top-border-color: rgb(224, 224, 224);
2736
+ --button-default-default-bottom-border-color: rgb(224, 224, 224);
2737
+ --button-default-default-left-border-color: rgb(224, 224, 224);
2738
+ --button-default-default-right-border-color: rgb(224, 224, 224);
2739
+
2740
+ /* --button-primary-default-bg-color: var(--color-brand-600);
2741
+ --button-primary-hover-bg-color: var(--color-brand-500);
2742
+ --button-primary-default-top-border-color: var(--color-brand-600);
2743
+ --button-primary-default-bottom-border-color: var(--color-brand-600);
2744
+ --button-primary-default-left-border-color: var(--color-brand-600);
2745
+ --button-primary-default-right-border-color: var(--color-brand-600); */
2746
+
2747
+ /* --button-default-default-font-color: rgb(1, 118, 211); */
2748
+ --button-enhance-default-bg-color: white;
2749
+ --Crud-toolbar-gap: 2px;
2750
+ /* --DropDown-caret-marginLeft: 0; */
2751
+ --Tabs--vertical-width: 180px;
2752
+ --Tabs--vertical-bg: white;
2753
+ --Tabs-link-maxWidth: 180px;
2754
+ --Tabs-content-bg: unset;
2755
+ --drawer-content-paddingTop: 0;
2756
+ --fieldSet-legend-fontWeight: 600;
2757
+ --fieldSet-legend-marginTop: 1rem;
2758
+ --fieldSet-legend-marginBottom: 1rem;
2759
+ --DropDown-caret-marginLeft: 0.25rem;
2760
+ --DropDown-menu-boxShadow: rgba(0, 0, 0, 0.12) 0px 0px 2px, rgba(0, 0, 0, 0.14) 0px 4px 8px;
2761
+ --boxShadow: rgba(0, 0, 0, 0.12) 0px 0px 2px, rgba(0, 0, 0, 0.14) 0px 4px 8px;
2762
+ --common-popover-border: none;
2763
+
2764
+ /* --SearchBox-search-icon-color: var(--color-gray-400); */
2765
+ }
2494
2766
 
2495
- .dark\:text-white:where(.dark, .dark *) {
2496
- --tw-text-opacity: 1;
2497
- color: rgb(255 255 255 / var(--tw-text-opacity, 1));
2767
+ a {
2768
+ color: var(--link-color);
2769
+ }
2770
+
2771
+
2772
+
2773
+ /* 修正手机端字体小的问题 */
2774
+ @media (max-width: 767px) {
2775
+
2776
+ :root {
2777
+ --button-size-default-fontSize: var(--fontSizeLg);
2778
+ --link-fontSize: var(--fontSizeLg);
2779
+ --Table-fontSize: var(--fontSizeLg);
2780
+ --Tabs--line-fontSize: var(--fontSizeLg);
2781
+ --Tabs--line-active-fontSize: var(--fontSizeLg);
2782
+ --Tabs--line-hover-fontSize: var(--fontSizeLg);
2783
+ --fieldSet-legend-fontSize: var(--fontSizeLg);
2784
+ --Pick-base-value-fontSize: var(--fontSizeLg);
2785
+ --dialog-header-fontSize: var(--fontSizeLg);
2786
+ --input-default-default-fontSize: var(--fontSizeLg);
2787
+ }
2788
+ .antd-Form .antd-Form-item input {
2789
+ font-size: var(--fontSizeLg);
2790
+ padding: 0 0.625rem 0 0.625rem;
2791
+ }
2792
+ }
2793
+
2794
+ .steedos-header-container {
2795
+ background-color: var(--color-white);
2796
+ color: var(--color-gray-700);
2797
+ --steedos-logo-color-default: var(--color-gray-500);
2798
+ .slds-icon-text-default {
2799
+ --slds-c-icon-color-foreground: var(--color-gray-500);
2800
+ }
2801
+ .slds-button_icon {
2802
+ --slds-g-color-neutral-base-50: var(--color-gray-500);
2803
+ }
2804
+ .lb-inbox-button {
2805
+ color: var(--color-gray-500);
2806
+ }
2807
+ }
2808
+
2809
+ .steedos.dark {
2810
+ .steedos-header-container {
2811
+ background-color: var(--color-brand-900);
2812
+ color: var(--color-gray-100);
2813
+ --steedos-logo-color-default: var(--color-gray-300);
2814
+ .slds-icon-text-default {
2815
+ --slds-c-icon-color-foreground: var(--color-gray-300);
2816
+ }
2817
+ .slds-button_icon {
2818
+ --slds-g-color-neutral-base-50: var(--color-gray-300);
2819
+ }
2820
+ .lb-inbox-button {
2821
+ color: var(--color-gray-300);
2822
+ }
2823
+ }
2824
+ }
2825
+
2826
+
2827
+ .creator-content-wrapper {
2828
+ overflow: auto !important;
2829
+ position: absolute;
2830
+ top: 0;
2831
+ right: 0;
2832
+ bottom: 0;
2833
+ left: 0;
2834
+ margin-top: 50px;
2835
+ }
2836
+
2837
+ @media (min-width: 767px) {
2838
+ .creator-content-wrapper {
2839
+ height:calc(100% - 50px)
2840
+ }
2841
+
2842
+ .creator-content-wrapper>.builder-component{
2843
+ height: 100%;
2844
+ }
2845
+
2846
+ .creator-content-wrapper>.builder-component>.builder-content{
2847
+ height: 100%;
2848
+ }
2849
+
2850
+ .creator-content-wrapper>.builder-component>.builder-content>div{
2851
+ height: 100%;
2852
+ }
2853
+
2854
+ .creator-content-wrapper>.builder-component>.builder-content>div>.builder-blocks{
2855
+ height: 100%;
2856
+ }
2857
+
2858
+ .creator-content-wrapper>.builder-component>.builder-content>div>.builder-blocks>.builder-block{
2859
+ height: 100%;
2860
+ }
2861
+ .creator-content-wrapper>.builder-component>.builder-content>div>.builder-blocks>.builder-block>.amis-scope{
2862
+ height: 100%;
2863
+ }
2864
+ }
2865
+
2866
+ .MuiSvgIcon-fontSizeSmall{
2867
+ font-size: 1rem !important;
2498
2868
  }
@@ -54438,11 +54438,11 @@ const getHeaderSchema = (props) => {
54438
54438
  body: [
54439
54439
  {
54440
54440
  "type": "wrapper",
54441
- "className": "sticky p-0 top-0 z-40 w-full flex-none backdrop-blur transition-colors duration-500 lg:z-[1000] steedos-header-container",
54441
+ "className": "sticky p-0 top-0 z-40 w-full flex-none backdrop-blur transition-colors duration-500 lg:z-[1000] steedos-header-container shadow",
54442
54442
  body: [
54443
54443
  {
54444
54444
  "type": "wrapper",
54445
- "className": "flex w-full px-4 py-0 h-[50px] justify-between items-center steedos-header-container-line-one bg-white shadow",
54445
+ "className": "flex w-full px-4 py-0 h-[50px] justify-between items-center steedos-header-container-line-one ",
54446
54446
  "body": [
54447
54447
  {
54448
54448
  type: "service",
@@ -54533,7 +54533,7 @@ const getHeaderSchema = (props) => {
54533
54533
  // "tpl": '',
54534
54534
  // },
54535
54535
  {
54536
- "className": "w-auto ml-4 font-bold text-lg text-gray-800 dark:text-white inline-block align-middle",
54536
+ "className": "w-auto ml-4 font-bold text-lg inline-block align-middle",
54537
54537
  "type": "tpl",
54538
54538
  "hiddenOn": "${window:innerWidth < 768}",
54539
54539
  "tpl": "${app.name}"
@@ -81085,7 +81085,7 @@ if (typeof ActiveXObject === "function") {
81085
81085
  if (typeof fetchApi !== "function") fetchApi = void 0;
81086
81086
  if (!fetchApi && !XmlHttpRequestApi && !ActiveXObjectApi) {
81087
81087
  try {
81088
- __vitePreload(() => import("./browser-ponyfill-Cz72OaIe.js").then((n) => n.b), true ? [] : void 0).then(function(mod) {
81088
+ __vitePreload(() => import("./browser-ponyfill-Divyjr19.js").then((n) => n.b), true ? [] : void 0).then(function(mod) {
81089
81089
  fetchApi = mod.default;
81090
81090
  }).catch(function() {
81091
81091
  });
package/dist/index.html CHANGED
@@ -12,9 +12,6 @@
12
12
  <link rel="stylesheet" href="https://unpkg.com/@fortawesome/fontawesome-free@6.2.0/css/all.min.css" />
13
13
  <link rel="stylesheet" href="https://unpkg.com/@salesforce-ux/design-system@2.22.2/assets/styles/salesforce-lightning-design-system.min.css">
14
14
 
15
- <link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/lib/themes/antd.css">
16
- <link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/lib/helper.css">
17
- <link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/sdk/iconfont.css">
18
15
 
19
16
  <script src="https://unpkg.com/lodash@4.17.21/lodash.js"></script>
20
17
  <script src="https://unpkg.com/jquery@3.7.1/dist/jquery.min.js"></script>
@@ -63,12 +60,19 @@
63
60
  window.loadCss = loadCss;
64
61
 
65
62
  </script>
63
+
64
+ <script src="https://unpkg.com/antd@4.24.5/dist/antd.min.js"></script>
65
+ <link rel="stylesheet" href="https://unpkg.com/antd@4.24.5/dist/antd.min.css">
66
+
66
67
  <script src="https://unpkg.com/i18next@24.2.2/dist/umd/i18next.min.js"></script>
67
- <!-- <link rel="stylesheet" type="text/css" href="/tailwind/tailwind-steedos.css"> -->
68
- <script type="module" crossorigin src="/assets/index-Be9ZfP7N.js"></script>
69
- <link rel="stylesheet" crossorigin href="/assets/index-DwEdDrjB.css">
68
+
69
+ <link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/lib/themes/antd.css">
70
+ <link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/lib/helper.css">
71
+ <link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/sdk/iconfont.css">
72
+ <script type="module" crossorigin src="/assets/index-DfIlPMql.js"></script>
73
+ <link rel="stylesheet" crossorigin href="/assets/index-DRMPL4X9.css">
70
74
  </head>
71
75
  <body class="skin-blue-light fixed steedos sidebar-mini three-columns" >
72
- <div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden bg-slate-50"></div>
76
+ <div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden bg-slate-50 dark"></div>
73
77
  </body>
74
78
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/webapp",
3
- "version": "3.0.4-beta.1",
3
+ "version": "3.0.4-beta.2",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
@@ -75,7 +75,7 @@
75
75
  "access": "public"
76
76
  },
77
77
  "repository": "https://github.com/steedos/app-builder/tree/master/apps/accounts",
78
- "gitHead": "3b62a855a71457d7a8bfeb47ba6d6863a7aa9763",
78
+ "gitHead": "4e3a235078fdb5a531de35dbc45c549c56c61715",
79
79
  "dependencies": {
80
80
  "@steedos-widgets/amis-object": "^6.10.33"
81
81
  }