tinacms 0.68.8 → 0.68.11

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.js CHANGED
@@ -2224,11 +2224,12 @@ mutation addPendingDocumentMutation(
2224
2224
  return this.contentApiUrl.includes("localhost");
2225
2225
  }
2226
2226
  setBranch(branchName) {
2227
- var _a, _b, _c;
2227
+ var _a, _b, _c, _d;
2228
2228
  const encodedBranch = encodeURIComponent(branchName);
2229
- this.frontendUrl = ((_a = this.options.tinaioConfig) == null ? void 0 : _a.frontendUrlOverride) || "https://app.tina.io";
2230
- this.identityApiUrl = ((_b = this.options.tinaioConfig) == null ? void 0 : _b.identityApiUrlOverride) || "https://identity.tinajs.io";
2231
- this.contentApiBase = ((_c = this.options.tinaioConfig) == null ? void 0 : _c.contentApiUrlOverride) || `https://content.tinajs.io`;
2229
+ this.assetsApiUrl = ((_a = this.options.tinaioConfig) == null ? void 0 : _a.assetsApiUrlOverride) || "https://assets.tinajs.io";
2230
+ this.frontendUrl = ((_b = this.options.tinaioConfig) == null ? void 0 : _b.frontendUrlOverride) || "https://app.tina.io";
2231
+ this.identityApiUrl = ((_c = this.options.tinaioConfig) == null ? void 0 : _c.identityApiUrlOverride) || "https://identity.tinajs.io";
2232
+ this.contentApiBase = ((_d = this.options.tinaioConfig) == null ? void 0 : _d.contentApiUrlOverride) || `https://content.tinajs.io`;
2232
2233
  this.contentApiUrl = this.options.customContentApiUrl || `${this.contentApiBase}/content/${this.options.clientId}/github/${encodedBranch}`;
2233
2234
  }
2234
2235
  async requestWithForm(query, {
@@ -2262,7 +2263,12 @@ mutation addPendingDocumentMutation(
2262
2263
  })
2263
2264
  });
2264
2265
  if (res.status !== 200) {
2265
- throw new Error(`Unable to complete request, ${res.statusText}`);
2266
+ let errorMessage = `Unable to complete request, ${res.statusText}`;
2267
+ const resBody = await res.json();
2268
+ if (resBody.message) {
2269
+ errorMessage = `${errorMessage}, Response: ${resBody.message}`;
2270
+ }
2271
+ throw new Error(errorMessage);
2266
2272
  }
2267
2273
  const json = await res.json();
2268
2274
  if (json.errors) {
@@ -2680,7 +2686,7 @@ mutation addPendingDocumentMutation(
2680
2686
  cms.registerApi("admin", new TinaAdminApi(cms));
2681
2687
  }
2682
2688
  const setupMedia = async () => {
2683
- var _a;
2689
+ var _a, _b, _c;
2684
2690
  if (props.mediaStore) {
2685
2691
  if ((_a = props.mediaStore.prototype) == null ? void 0 : _a.persist) {
2686
2692
  cms.media.store = new props.mediaStore(cms.api.tina);
@@ -2688,6 +2694,12 @@ mutation addPendingDocumentMutation(
2688
2694
  const MediaClass = await props.mediaStore();
2689
2695
  cms.media.store = new MediaClass(cms.api.tina);
2690
2696
  }
2697
+ } else {
2698
+ if ((_c = (_b = props.schema.config) == null ? void 0 : _b.media) == null ? void 0 : _c.tina) {
2699
+ cms.media.store = new toolkit.TinaMediaStore(cms);
2700
+ } else {
2701
+ cms.media.store = new toolkit.DummyMediaStore();
2702
+ }
2691
2703
  }
2692
2704
  };
2693
2705
  const handleListBranches = async () => {
@@ -2743,7 +2755,885 @@ mutation addPendingDocumentMutation(
2743
2755
  }))));
2744
2756
  };
2745
2757
  const TinaCloudAuthWall = TinaCloudProvider;
2746
- var styles = '*, ::before, ::after {\n --tw-translate-x: 0;\n --tw-translate-y: 0;\n --tw-rotate: 0;\n --tw-skew-x: 0;\n --tw-skew-y: 0;\n --tw-scale-x: 1;\n --tw-scale-y: 1;\n --tw-pan-x: ;\n --tw-pan-y: ;\n --tw-pinch-zoom: ;\n --tw-scroll-snap-strictness: proximity;\n --tw-ordinal: ;\n --tw-slashed-zero: ;\n --tw-numeric-figure: ;\n --tw-numeric-spacing: ;\n --tw-numeric-fraction: ;\n --tw-ring-inset: ;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-color: rgb(0 132 255 / 0.5);\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-ring-shadow: 0 0 #0000;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-colored: 0 0 #0000;\n --tw-blur: ;\n --tw-brightness: ;\n --tw-contrast: ;\n --tw-grayscale: ;\n --tw-hue-rotate: ;\n --tw-invert: ;\n --tw-saturate: ;\n --tw-sepia: ;\n --tw-drop-shadow: ;\n --tw-backdrop-blur: ;\n --tw-backdrop-brightness: ;\n --tw-backdrop-contrast: ;\n --tw-backdrop-grayscale: ;\n --tw-backdrop-hue-rotate: ;\n --tw-backdrop-invert: ;\n --tw-backdrop-opacity: ;\n --tw-backdrop-saturate: ;\n --tw-backdrop-sepia: ;\n}\n.tina-tailwind .pointer-events-auto {\n pointer-events: auto;\n}\n.tina-tailwind .static {\n position: static;\n}\n.tina-tailwind .fixed {\n position: fixed;\n}\n.tina-tailwind .absolute {\n position: absolute;\n}\n.tina-tailwind .relative {\n position: relative;\n}\n.tina-tailwind .inset-0 {\n top: 0px;\n right: 0px;\n bottom: 0px;\n left: 0px;\n}\n.tina-tailwind .left-0 {\n left: 0px;\n}\n.tina-tailwind .top-0 {\n top: 0px;\n}\n.tina-tailwind .top-8 {\n top: 32px;\n}\n.tina-tailwind .right-0 {\n right: 0px;\n}\n.tina-tailwind .top-10 {\n top: 40px;\n}\n.tina-tailwind .top-4 {\n top: 16px;\n}\n.tina-tailwind .z-overlay {\n z-index: 10600;\n}\n.tina-tailwind .z-menu {\n z-index: 9800;\n}\n.tina-tailwind .z-50 {\n z-index: 50;\n}\n.tina-tailwind .mx-auto {\n margin-left: auto;\n margin-right: auto;\n}\n.tina-tailwind .-ml-px {\n margin-left: -1px;\n}\n.tina-tailwind .mr-2 {\n margin-right: 8px;\n}\n.tina-tailwind .mb-2 {\n margin-bottom: 8px;\n}\n.tina-tailwind .mb-1 {\n margin-bottom: 4px;\n}\n.tina-tailwind .-mt-0\\.5 {\n margin-top: -2px;\n}\n.tina-tailwind .-mt-0 {\n margin-top: -0px;\n}\n.tina-tailwind .ml-1 {\n margin-left: 4px;\n}\n.tina-tailwind .mt-2 {\n margin-top: 8px;\n}\n.tina-tailwind .mr-1\\.5 {\n margin-right: 6px;\n}\n.tina-tailwind .mr-1 {\n margin-right: 4px;\n}\n.tina-tailwind .block {\n display: block;\n}\n.tina-tailwind .inline-block {\n display: inline-block;\n}\n.tina-tailwind .inline {\n display: inline;\n}\n.tina-tailwind .flex {\n display: flex;\n}\n.tina-tailwind .inline-flex {\n display: inline-flex;\n}\n.tina-tailwind .table {\n display: table;\n}\n.tina-tailwind .h-screen {\n height: 100vh;\n}\n.tina-tailwind .h-auto {\n height: auto;\n}\n.tina-tailwind .h-full {\n height: 100%;\n}\n.tina-tailwind .h-6 {\n height: 24px;\n}\n.tina-tailwind .h-7 {\n height: 28px;\n}\n.tina-tailwind .h-10 {\n height: 40px;\n}\n.tina-tailwind .h-5 {\n height: 20px;\n}\n.tina-tailwind .h-12 {\n height: 48px;\n}\n.tina-tailwind .w-full {\n width: 100%;\n}\n.tina-tailwind .w-10 {\n width: 40px;\n}\n.tina-tailwind .w-auto {\n width: auto;\n}\n.tina-tailwind .w-5 {\n width: 20px;\n}\n.tina-tailwind .w-56 {\n width: 224px;\n}\n.tina-tailwind .w-0 {\n width: 0px;\n}\n.tina-tailwind .w-6 {\n width: 24px;\n}\n.tina-tailwind .max-w-lg {\n max-width: 32rem;\n}\n.tina-tailwind .max-w-screen-xl {\n max-width: 1280px;\n}\n.tina-tailwind .max-w-form {\n max-width: 900px;\n}\n.tina-tailwind .max-w-full {\n max-width: 100%;\n}\n.tina-tailwind .flex-1 {\n flex: 1 1 0%;\n}\n.tina-tailwind .flex-shrink-0 {\n flex-shrink: 0;\n}\n.tina-tailwind .flex-grow-0 {\n flex-grow: 0;\n}\n.tina-tailwind .table-auto {\n table-layout: auto;\n}\n.tina-tailwind .origin-top-right {\n transform-origin: top right;\n}\n.tina-tailwind .-translate-x-full {\n --tw-translate-x: -100%;\n transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.tina-tailwind .translate-x-0 {\n --tw-translate-x: 0px;\n transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.tina-tailwind .translate-x-full {\n --tw-translate-x: 100%;\n transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.tina-tailwind .scale-95 {\n --tw-scale-x: .95;\n --tw-scale-y: .95;\n transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.tina-tailwind .scale-100 {\n --tw-scale-x: 1;\n --tw-scale-y: 1;\n transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.tina-tailwind .transform {\n transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.tina-tailwind .cursor-pointer {\n cursor: pointer;\n}\n.tina-tailwind .flex-col {\n flex-direction: column;\n}\n.tina-tailwind .items-end {\n align-items: flex-end;\n}\n.tina-tailwind .items-center {\n align-items: center;\n}\n.tina-tailwind .items-stretch {\n align-items: stretch;\n}\n.tina-tailwind .justify-end {\n justify-content: flex-end;\n}\n.tina-tailwind .justify-center {\n justify-content: center;\n}\n.tina-tailwind .justify-between {\n justify-content: space-between;\n}\n.tina-tailwind .gap-0\\.5 {\n gap: 2px;\n}\n.tina-tailwind .gap-0 {\n gap: 0px;\n}\n.tina-tailwind .gap-4 {\n gap: 16px;\n}\n.tina-tailwind .gap-3 {\n gap: 12px;\n}\n.tina-tailwind .divide-y > :not([hidden]) ~ :not([hidden]) {\n --tw-divide-y-reverse: 0;\n border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));\n border-bottom-width: calc(1px * var(--tw-divide-y-reverse));\n}\n.tina-tailwind .divide-gray-150 > :not([hidden]) ~ :not([hidden]) {\n --tw-divide-opacity: 1;\n border-color: rgb(230 227 239 / var(--tw-divide-opacity));\n}\n.tina-tailwind .overflow-hidden {\n overflow: hidden;\n}\n.tina-tailwind .overflow-y-auto {\n overflow-y: auto;\n}\n.tina-tailwind .whitespace-nowrap {\n white-space: nowrap;\n}\n.tina-tailwind .rounded-lg {\n border-radius: 8px;\n}\n.tina-tailwind .rounded {\n border-radius: 4px;\n}\n.tina-tailwind .rounded-full {\n border-radius: 9999px;\n}\n.tina-tailwind .rounded-md {\n border-radius: 6px;\n}\n.tina-tailwind .rounded-r-md {\n border-top-right-radius: 6px;\n border-bottom-right-radius: 6px;\n}\n.tina-tailwind .border {\n border-width: 1px;\n}\n.tina-tailwind .border-b {\n border-bottom-width: 1px;\n}\n.tina-tailwind .border-gray-150 {\n --tw-border-opacity: 1;\n border-color: rgb(230 227 239 / var(--tw-border-opacity));\n}\n.tina-tailwind .border-gray-200 {\n --tw-border-opacity: 1;\n border-color: rgb(225 221 236 / var(--tw-border-opacity));\n}\n.tina-tailwind .bg-white {\n --tw-bg-opacity: 1;\n background-color: rgb(255 255 255 / var(--tw-bg-opacity));\n}\n.tina-tailwind .bg-gray-50 {\n --tw-bg-opacity: 1;\n background-color: rgb(246 246 249 / var(--tw-bg-opacity));\n}\n.tina-tailwind .bg-blue-500 {\n --tw-bg-opacity: 1;\n background-color: rgb(0 132 255 / var(--tw-bg-opacity));\n}\n.tina-tailwind .bg-gradient-to-b {\n background-image: linear-gradient(to bottom, var(--tw-gradient-stops));\n}\n.tina-tailwind .bg-gradient-to-br {\n background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));\n}\n.tina-tailwind .from-blue-900 {\n --tw-gradient-from: #1D2C6C;\n --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(29 44 108 / 0));\n}\n.tina-tailwind .from-gray-800 {\n --tw-gradient-from: #363145;\n --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(54 49 69 / 0));\n}\n.tina-tailwind .via-gray-900 {\n --tw-gradient-stops: var(--tw-gradient-from), #252336, var(--tw-gradient-to, rgb(37 35 54 / 0));\n}\n.tina-tailwind .to-gray-900 {\n --tw-gradient-to: #252336;\n}\n.tina-tailwind .to-black {\n --tw-gradient-to: #000;\n}\n.tina-tailwind .px-4 {\n padding-left: 16px;\n padding-right: 16px;\n}\n.tina-tailwind .py-6 {\n padding-top: 24px;\n padding-bottom: 24px;\n}\n.tina-tailwind .px-5 {\n padding-left: 20px;\n padding-right: 20px;\n}\n.tina-tailwind .py-4 {\n padding-top: 16px;\n padding-bottom: 16px;\n}\n.tina-tailwind .px-12 {\n padding-left: 48px;\n padding-right: 48px;\n}\n.tina-tailwind .py-10 {\n padding-top: 40px;\n padding-bottom: 40px;\n}\n.tina-tailwind .px-20 {\n padding-left: 80px;\n padding-right: 80px;\n}\n.tina-tailwind .px-6 {\n padding-left: 24px;\n padding-right: 24px;\n}\n.tina-tailwind .py-1 {\n padding-top: 4px;\n padding-bottom: 4px;\n}\n.tina-tailwind .py-2 {\n padding-top: 8px;\n padding-bottom: 8px;\n}\n.tina-tailwind .py-5 {\n padding-top: 20px;\n padding-bottom: 20px;\n}\n.tina-tailwind .pt-4 {\n padding-top: 16px;\n}\n.tina-tailwind .pb-4 {\n padding-bottom: 16px;\n}\n.tina-tailwind .pt-18 {\n padding-top: 72px;\n}\n.tina-tailwind .pt-3 {\n padding-top: 12px;\n}\n.tina-tailwind .pl-18 {\n padding-left: 72px;\n}\n.tina-tailwind .text-left {\n text-align: left;\n}\n.tina-tailwind .text-center {\n text-align: center;\n}\n.tina-tailwind .font-sans {\n font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";\n}\n.tina-tailwind .text-2xl {\n font-size: 24px;\n line-height: 1.33;\n}\n.tina-tailwind .text-base {\n font-size: 16px;\n line-height: 1.5;\n}\n.tina-tailwind .text-sm {\n font-size: 14px;\n line-height: 1.43;\n}\n.tina-tailwind .text-xl {\n font-size: 20px;\n line-height: 1.4;\n}\n.tina-tailwind .text-md {\n font-size: 16px;\n line-height: 1.5;\n}\n.tina-tailwind .text-xs {\n font-size: 13px;\n line-height: 1.33;\n}\n.tina-tailwind .font-medium {\n font-weight: 500;\n}\n.tina-tailwind .uppercase {\n text-transform: uppercase;\n}\n.tina-tailwind .italic {\n font-style: italic;\n}\n.tina-tailwind .leading-normal {\n line-height: 1.5;\n}\n.tina-tailwind .leading-tight {\n line-height: 1.25;\n}\n.tina-tailwind .leading-5 {\n line-height: 20px;\n}\n.tina-tailwind .tracking-wide {\n letter-spacing: 0.025em;\n}\n.tina-tailwind .text-gray-600 {\n --tw-text-opacity: 1;\n color: rgb(86 81 101 / var(--tw-text-opacity));\n}\n.tina-tailwind .text-gray-700 {\n --tw-text-opacity: 1;\n color: rgb(67 62 82 / var(--tw-text-opacity));\n}\n.tina-tailwind .text-blue-600 {\n --tw-text-opacity: 1;\n color: rgb(5 116 228 / var(--tw-text-opacity));\n}\n.tina-tailwind .text-gray-500 {\n --tw-text-opacity: 1;\n color: rgb(113 108 127 / var(--tw-text-opacity));\n}\n.tina-tailwind .text-gray-400 {\n --tw-text-opacity: 1;\n color: rgb(145 140 158 / var(--tw-text-opacity));\n}\n.tina-tailwind .text-current {\n color: currentColor;\n}\n.tina-tailwind .text-white {\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity));\n}\n.tina-tailwind .text-gray-800 {\n --tw-text-opacity: 1;\n color: rgb(54 49 69 / var(--tw-text-opacity));\n}\n.tina-tailwind .text-gray-900 {\n --tw-text-opacity: 1;\n color: rgb(37 35 54 / var(--tw-text-opacity));\n}\n.tina-tailwind .text-red-500 {\n --tw-text-opacity: 1;\n color: rgb(239 68 68 / var(--tw-text-opacity));\n}\n.tina-tailwind .underline {\n text-decoration-line: underline;\n}\n.tina-tailwind .opacity-100 {\n opacity: 1;\n}\n.tina-tailwind .opacity-0 {\n opacity: 0;\n}\n.tina-tailwind .opacity-80 {\n opacity: .8;\n}\n.tina-tailwind .opacity-90 {\n opacity: .9;\n}\n.tina-tailwind .opacity-50 {\n opacity: .5;\n}\n.tina-tailwind .opacity-70 {\n opacity: .7;\n}\n.tina-tailwind .shadow-lg {\n --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);\n --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tina-tailwind .shadow-2xl {\n --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);\n --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tina-tailwind .shadow {\n --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tina-tailwind .ring-1 {\n --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);\n box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.tina-tailwind .ring-black {\n --tw-ring-opacity: 1;\n --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));\n}\n.tina-tailwind .ring-opacity-5 {\n --tw-ring-opacity: .05;\n}\n.tina-tailwind .filter {\n filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);\n}\n.tina-tailwind .transition-opacity {\n transition-property: opacity;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 150ms;\n}\n.tina-tailwind .transition-all {\n transition-property: all;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 150ms;\n}\n.tina-tailwind .transition-colors {\n transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 150ms;\n}\n.tina-tailwind .transition {\n transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 150ms;\n}\n.tina-tailwind .duration-300 {\n transition-duration: 300ms;\n}\n.tina-tailwind .duration-200 {\n transition-duration: 200ms;\n}\n.tina-tailwind .duration-150 {\n transition-duration: 150ms;\n}\n.tina-tailwind .duration-100 {\n transition-duration: 100ms;\n}\n.tina-tailwind .duration-75 {\n transition-duration: 75ms;\n}\n.tina-tailwind .ease-out {\n transition-timing-function: cubic-bezier(0, 0, 0.2, 1);\n}\n.tina-tailwind .ease-in {\n transition-timing-function: cubic-bezier(0.4, 0, 1, 1);\n}\n.tina-tailwind .icon-parent svg {\n fill: currentColor;\n }\n\n.tina-tailwind {\n font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";\n font-size: 16px;\n line-height: 1.5;\n --tw-text-opacity: 1;\n color: rgb(86 81 101 / var(--tw-text-opacity));\n}\n\n.tina-tailwind .hover\\:bg-blue-600:hover {\n --tw-bg-opacity: 1;\n background-color: rgb(5 116 228 / var(--tw-bg-opacity));\n}\n\n.tina-tailwind .hover\\:text-blue-600:hover {\n --tw-text-opacity: 1;\n color: rgb(5 116 228 / var(--tw-text-opacity));\n}\n\n.tina-tailwind .hover\\:text-blue-400:hover {\n --tw-text-opacity: 1;\n color: rgb(34 150 254 / var(--tw-text-opacity));\n}\n\n.tina-tailwind .hover\\:opacity-100:hover {\n opacity: 1;\n}\n\n.tina-tailwind .focus\\:text-blue-400:focus {\n --tw-text-opacity: 1;\n color: rgb(34 150 254 / var(--tw-text-opacity));\n}\n\n.tina-tailwind .focus\\:underline:focus {\n text-decoration-line: underline;\n}\n\n.tina-tailwind .focus\\:shadow-outline:focus {\n --tw-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);\n --tw-shadow-colored: 0 0 0 3px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n\n.tina-tailwind .focus\\:outline-none:focus {\n outline: 2px solid transparent;\n outline-offset: 2px;\n}\n\n.tina-tailwind .focus\\:ring-2:focus {\n --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\n box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n\n.tina-tailwind .focus\\:ring-blue-500:focus {\n --tw-ring-opacity: 1;\n --tw-ring-color: rgb(0 132 255 / var(--tw-ring-opacity));\n}\n';
2758
+ var styles = `.tina-tailwind {
2759
+ line-height: 1.5;
2760
+ -webkit-text-size-adjust: 100%;
2761
+ -moz-tab-size: 4;
2762
+ tab-size: 4;
2763
+ }
2764
+
2765
+ .tina-tailwind *,
2766
+ .tina-tailwind ::before,
2767
+ .tina-tailwind ::after {
2768
+ box-sizing: border-box;
2769
+ border-width: 0;
2770
+ border-style: solid;
2771
+ border-color: transparent;
2772
+ }
2773
+
2774
+ .tina-tailwind ::before,
2775
+ .tina-tailwind ::after {
2776
+ --tw-content: '';
2777
+ }
2778
+
2779
+ .tina-tailwind hr {
2780
+ height: 0; /* 1 */
2781
+ color: inherit; /* 2 */
2782
+ border-top-width: 1px; /* 3 */
2783
+ }
2784
+
2785
+ .tina-tailwind abbr:where([title]) {
2786
+ text-decoration: underline dotted;
2787
+ }
2788
+
2789
+ .tina-tailwind h1,
2790
+ .tina-tailwind h2,
2791
+ .tina-tailwind h3,
2792
+ .tina-tailwind h4,
2793
+ .tina-tailwind h5,
2794
+ .tina-tailwind h6 {
2795
+ font-size: inherit;
2796
+ font-weight: inherit;
2797
+ }
2798
+
2799
+ .tina-tailwind a {
2800
+ color: inherit;
2801
+ text-decoration: inherit;
2802
+ }
2803
+
2804
+ .tina-tailwind b,
2805
+ .tina-tailwind strong {
2806
+ font-weight: bolder;
2807
+ }
2808
+
2809
+ .tina-tailwind code,
2810
+ .tina-tailwind kbd,
2811
+ .tina-tailwind samp,
2812
+ .tina-tailwind pre {
2813
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
2814
+ font-size: 1em; /* 2 */
2815
+ }
2816
+
2817
+ .tina-tailwind small {
2818
+ font-size: 80%;
2819
+ }
2820
+
2821
+ .tina-tailwind sub,
2822
+ .tina-tailwind sup {
2823
+ font-size: 75%;
2824
+ line-height: 0;
2825
+ position: relative;
2826
+ vertical-align: baseline;
2827
+ }
2828
+
2829
+ .tina-tailwind sub {
2830
+ bottom: -0.25em;
2831
+ }
2832
+
2833
+ .tina-tailwind sup {
2834
+ top: -0.5em;
2835
+ }
2836
+
2837
+ .tina-tailwind table {
2838
+ text-indent: 0; /* 1 */
2839
+ border-color: inherit; /* 2 */
2840
+ border-collapse: collapse; /* 3 */
2841
+ }
2842
+
2843
+ .tina-tailwind button,
2844
+ .tina-tailwind input,
2845
+ .tina-tailwind optgroup,
2846
+ .tina-tailwind select,
2847
+ .tina-tailwind textarea {
2848
+ font-family: inherit; /* 1 */
2849
+ font-size: 100%; /* 1 */
2850
+ line-height: inherit; /* 1 */
2851
+ color: inherit; /* 1 */
2852
+ margin: 0; /* 2 */
2853
+ padding: 0; /* 3 */
2854
+ }
2855
+
2856
+ .tina-tailwind button,
2857
+ .tina-tailwind select {
2858
+ text-transform: none;
2859
+ }
2860
+
2861
+ .tina-tailwind button,
2862
+ .tina-tailwind [type='button'],
2863
+ .tina-tailwind [type='reset'],
2864
+ .tina-tailwind [type='submit'] {
2865
+ -webkit-appearance: button; /* 1 */
2866
+ background-color: transparent; /* 2 */
2867
+ background-image: none; /* 2 */
2868
+ }
2869
+
2870
+ .tina-tailwind :-moz-focusring {
2871
+ outline: auto;
2872
+ }
2873
+
2874
+ .tina-tailwind :-moz-ui-invalid {
2875
+ box-shadow: none;
2876
+ }
2877
+
2878
+ .tina-tailwind progress {
2879
+ vertical-align: baseline;
2880
+ }
2881
+
2882
+ .tina-tailwind ::-webkit-inner-spin-button,
2883
+ .tina-tailwind ::-webkit-outer-spin-button {
2884
+ height: auto;
2885
+ }
2886
+
2887
+ .tina-tailwind [type='search'] {
2888
+ -webkit-appearance: textfield; /* 1 */
2889
+ outline-offset: -2px; /* 2 */
2890
+ }
2891
+
2892
+ .tina-tailwind ::-webkit-search-decoration {
2893
+ -webkit-appearance: none;
2894
+ }
2895
+
2896
+ .tina-tailwind ::-webkit-file-upload-button {
2897
+ -webkit-appearance: button; /* 1 */
2898
+ font: inherit; /* 2 */
2899
+ }
2900
+
2901
+ .tina-tailwind summary {
2902
+ display: list-item;
2903
+ }
2904
+
2905
+ .tina-tailwind blockquote,
2906
+ .tina-tailwind dl,
2907
+ .tina-tailwind dd,
2908
+ .tina-tailwind h1,
2909
+ .tina-tailwind h2,
2910
+ .tina-tailwind h3,
2911
+ .tina-tailwind h4,
2912
+ .tina-tailwind h5,
2913
+ .tina-tailwind h6,
2914
+ .tina-tailwind hr,
2915
+ .tina-tailwind figure,
2916
+ .tina-tailwind p,
2917
+ .tina-tailwind pre {
2918
+ margin: 0;
2919
+ }
2920
+
2921
+ .tina-tailwind fieldset {
2922
+ margin: 0;
2923
+ padding: 0;
2924
+ }
2925
+
2926
+ .tina-tailwind legend {
2927
+ padding: 0;
2928
+ }
2929
+
2930
+ .tina-tailwind ol,
2931
+ .tina-tailwind ul,
2932
+ .tina-tailwind menu {
2933
+ list-style: none;
2934
+ margin: 0;
2935
+ padding: 0;
2936
+ }
2937
+
2938
+ .tina-tailwind li:before {
2939
+ display: none;
2940
+ }
2941
+
2942
+ .tina-tailwind textarea {
2943
+ resize: vertical;
2944
+ }
2945
+
2946
+ .tina-tailwind input::placeholder,
2947
+ .tina-tailwind textarea::placeholder {
2948
+ opacity: 1; /* 1 */
2949
+ color: #918c9e; /* 2 */
2950
+ }
2951
+
2952
+ .tina-tailwind button,
2953
+ .tina-tailwind [role='button'] {
2954
+ cursor: pointer;
2955
+ }
2956
+
2957
+ .tina-tailwind :disabled {
2958
+ cursor: default;
2959
+ }
2960
+
2961
+ .tina-tailwind img,
2962
+ .tina-tailwind svg,
2963
+ .tina-tailwind video,
2964
+ .tina-tailwind canvas,
2965
+ .tina-tailwind audio,
2966
+ .tina-tailwind iframe,
2967
+ .tina-tailwind embed,
2968
+ .tina-tailwind object {
2969
+ display: block; /* 1 */
2970
+ vertical-align: middle; /* 2 */
2971
+ }
2972
+
2973
+ .tina-tailwind img,
2974
+ .tina-tailwind video {
2975
+ max-width: 100%;
2976
+ height: auto;
2977
+ }
2978
+
2979
+ .tina-tailwind [hidden] {
2980
+ display: none;
2981
+ }
2982
+ *, ::before, ::after {
2983
+ --tw-translate-x: 0;
2984
+ --tw-translate-y: 0;
2985
+ --tw-rotate: 0;
2986
+ --tw-skew-x: 0;
2987
+ --tw-skew-y: 0;
2988
+ --tw-scale-x: 1;
2989
+ --tw-scale-y: 1;
2990
+ --tw-pan-x: ;
2991
+ --tw-pan-y: ;
2992
+ --tw-pinch-zoom: ;
2993
+ --tw-scroll-snap-strictness: proximity;
2994
+ --tw-ordinal: ;
2995
+ --tw-slashed-zero: ;
2996
+ --tw-numeric-figure: ;
2997
+ --tw-numeric-spacing: ;
2998
+ --tw-numeric-fraction: ;
2999
+ --tw-ring-inset: ;
3000
+ --tw-ring-offset-width: 0px;
3001
+ --tw-ring-offset-color: #fff;
3002
+ --tw-ring-color: rgb(0 132 255 / 0.5);
3003
+ --tw-ring-offset-shadow: 0 0 #0000;
3004
+ --tw-ring-shadow: 0 0 #0000;
3005
+ --tw-shadow: 0 0 #0000;
3006
+ --tw-shadow-colored: 0 0 #0000;
3007
+ --tw-blur: ;
3008
+ --tw-brightness: ;
3009
+ --tw-contrast: ;
3010
+ --tw-grayscale: ;
3011
+ --tw-hue-rotate: ;
3012
+ --tw-invert: ;
3013
+ --tw-saturate: ;
3014
+ --tw-sepia: ;
3015
+ --tw-drop-shadow: ;
3016
+ --tw-backdrop-blur: ;
3017
+ --tw-backdrop-brightness: ;
3018
+ --tw-backdrop-contrast: ;
3019
+ --tw-backdrop-grayscale: ;
3020
+ --tw-backdrop-hue-rotate: ;
3021
+ --tw-backdrop-invert: ;
3022
+ --tw-backdrop-opacity: ;
3023
+ --tw-backdrop-saturate: ;
3024
+ --tw-backdrop-sepia: ;
3025
+ }
3026
+ .tina-tailwind .pointer-events-auto {
3027
+ pointer-events: auto;
3028
+ }
3029
+ .tina-tailwind .static {
3030
+ position: static;
3031
+ }
3032
+ .tina-tailwind .fixed {
3033
+ position: fixed;
3034
+ }
3035
+ .tina-tailwind .absolute {
3036
+ position: absolute;
3037
+ }
3038
+ .tina-tailwind .relative {
3039
+ position: relative;
3040
+ }
3041
+ .tina-tailwind .inset-0 {
3042
+ top: 0px;
3043
+ right: 0px;
3044
+ bottom: 0px;
3045
+ left: 0px;
3046
+ }
3047
+ .tina-tailwind .left-0 {
3048
+ left: 0px;
3049
+ }
3050
+ .tina-tailwind .top-0 {
3051
+ top: 0px;
3052
+ }
3053
+ .tina-tailwind .top-8 {
3054
+ top: 32px;
3055
+ }
3056
+ .tina-tailwind .right-0 {
3057
+ right: 0px;
3058
+ }
3059
+ .tina-tailwind .top-10 {
3060
+ top: 40px;
3061
+ }
3062
+ .tina-tailwind .top-4 {
3063
+ top: 16px;
3064
+ }
3065
+ .tina-tailwind .z-overlay {
3066
+ z-index: 10600;
3067
+ }
3068
+ .tina-tailwind .z-menu {
3069
+ z-index: 9800;
3070
+ }
3071
+ .tina-tailwind .z-50 {
3072
+ z-index: 50;
3073
+ }
3074
+ .tina-tailwind .mx-auto {
3075
+ margin-left: auto;
3076
+ margin-right: auto;
3077
+ }
3078
+ .tina-tailwind .-ml-px {
3079
+ margin-left: -1px;
3080
+ }
3081
+ .tina-tailwind .mr-2 {
3082
+ margin-right: 8px;
3083
+ }
3084
+ .tina-tailwind .mb-2 {
3085
+ margin-bottom: 8px;
3086
+ }
3087
+ .tina-tailwind .mb-1 {
3088
+ margin-bottom: 4px;
3089
+ }
3090
+ .tina-tailwind .-mt-0\\.5 {
3091
+ margin-top: -2px;
3092
+ }
3093
+ .tina-tailwind .-mt-0 {
3094
+ margin-top: -0px;
3095
+ }
3096
+ .tina-tailwind .ml-1 {
3097
+ margin-left: 4px;
3098
+ }
3099
+ .tina-tailwind .mt-2 {
3100
+ margin-top: 8px;
3101
+ }
3102
+ .tina-tailwind .mr-1\\.5 {
3103
+ margin-right: 6px;
3104
+ }
3105
+ .tina-tailwind .mr-1 {
3106
+ margin-right: 4px;
3107
+ }
3108
+ .tina-tailwind .block {
3109
+ display: block;
3110
+ }
3111
+ .tina-tailwind .inline-block {
3112
+ display: inline-block;
3113
+ }
3114
+ .tina-tailwind .inline {
3115
+ display: inline;
3116
+ }
3117
+ .tina-tailwind .flex {
3118
+ display: flex;
3119
+ }
3120
+ .tina-tailwind .inline-flex {
3121
+ display: inline-flex;
3122
+ }
3123
+ .tina-tailwind .table {
3124
+ display: table;
3125
+ }
3126
+ .tina-tailwind .h-screen {
3127
+ height: 100vh;
3128
+ }
3129
+ .tina-tailwind .h-auto {
3130
+ height: auto;
3131
+ }
3132
+ .tina-tailwind .h-full {
3133
+ height: 100%;
3134
+ }
3135
+ .tina-tailwind .h-6 {
3136
+ height: 24px;
3137
+ }
3138
+ .tina-tailwind .h-7 {
3139
+ height: 28px;
3140
+ }
3141
+ .tina-tailwind .h-10 {
3142
+ height: 40px;
3143
+ }
3144
+ .tina-tailwind .h-5 {
3145
+ height: 20px;
3146
+ }
3147
+ .tina-tailwind .h-12 {
3148
+ height: 48px;
3149
+ }
3150
+ .tina-tailwind .w-full {
3151
+ width: 100%;
3152
+ }
3153
+ .tina-tailwind .w-10 {
3154
+ width: 40px;
3155
+ }
3156
+ .tina-tailwind .w-auto {
3157
+ width: auto;
3158
+ }
3159
+ .tina-tailwind .w-5 {
3160
+ width: 20px;
3161
+ }
3162
+ .tina-tailwind .w-56 {
3163
+ width: 224px;
3164
+ }
3165
+ .tina-tailwind .w-0 {
3166
+ width: 0px;
3167
+ }
3168
+ .tina-tailwind .w-6 {
3169
+ width: 24px;
3170
+ }
3171
+ .tina-tailwind .max-w-lg {
3172
+ max-width: 32rem;
3173
+ }
3174
+ .tina-tailwind .max-w-screen-xl {
3175
+ max-width: 1280px;
3176
+ }
3177
+ .tina-tailwind .max-w-form {
3178
+ max-width: 900px;
3179
+ }
3180
+ .tina-tailwind .max-w-full {
3181
+ max-width: 100%;
3182
+ }
3183
+ .tina-tailwind .flex-1 {
3184
+ flex: 1 1 0%;
3185
+ }
3186
+ .tina-tailwind .flex-shrink-0 {
3187
+ flex-shrink: 0;
3188
+ }
3189
+ .tina-tailwind .flex-grow-0 {
3190
+ flex-grow: 0;
3191
+ }
3192
+ .tina-tailwind .table-auto {
3193
+ table-layout: auto;
3194
+ }
3195
+ .tina-tailwind .origin-top-right {
3196
+ transform-origin: top right;
3197
+ }
3198
+ .tina-tailwind .-translate-x-full {
3199
+ --tw-translate-x: -100%;
3200
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3201
+ }
3202
+ .tina-tailwind .translate-x-0 {
3203
+ --tw-translate-x: 0px;
3204
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3205
+ }
3206
+ .tina-tailwind .translate-x-full {
3207
+ --tw-translate-x: 100%;
3208
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3209
+ }
3210
+ .tina-tailwind .scale-95 {
3211
+ --tw-scale-x: .95;
3212
+ --tw-scale-y: .95;
3213
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3214
+ }
3215
+ .tina-tailwind .scale-100 {
3216
+ --tw-scale-x: 1;
3217
+ --tw-scale-y: 1;
3218
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3219
+ }
3220
+ .tina-tailwind .transform {
3221
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3222
+ }
3223
+ .tina-tailwind .cursor-pointer {
3224
+ cursor: pointer;
3225
+ }
3226
+ .tina-tailwind .flex-col {
3227
+ flex-direction: column;
3228
+ }
3229
+ .tina-tailwind .items-end {
3230
+ align-items: flex-end;
3231
+ }
3232
+ .tina-tailwind .items-center {
3233
+ align-items: center;
3234
+ }
3235
+ .tina-tailwind .items-stretch {
3236
+ align-items: stretch;
3237
+ }
3238
+ .tina-tailwind .justify-end {
3239
+ justify-content: flex-end;
3240
+ }
3241
+ .tina-tailwind .justify-center {
3242
+ justify-content: center;
3243
+ }
3244
+ .tina-tailwind .justify-between {
3245
+ justify-content: space-between;
3246
+ }
3247
+ .tina-tailwind .gap-0\\.5 {
3248
+ gap: 2px;
3249
+ }
3250
+ .tina-tailwind .gap-0 {
3251
+ gap: 0px;
3252
+ }
3253
+ .tina-tailwind .gap-4 {
3254
+ gap: 16px;
3255
+ }
3256
+ .tina-tailwind .gap-3 {
3257
+ gap: 12px;
3258
+ }
3259
+ .tina-tailwind .divide-y > :not([hidden]) ~ :not([hidden]) {
3260
+ --tw-divide-y-reverse: 0;
3261
+ border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
3262
+ border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
3263
+ }
3264
+ .tina-tailwind .divide-gray-150 > :not([hidden]) ~ :not([hidden]) {
3265
+ --tw-divide-opacity: 1;
3266
+ border-color: rgb(230 227 239 / var(--tw-divide-opacity));
3267
+ }
3268
+ .tina-tailwind .overflow-hidden {
3269
+ overflow: hidden;
3270
+ }
3271
+ .tina-tailwind .overflow-y-auto {
3272
+ overflow-y: auto;
3273
+ }
3274
+ .tina-tailwind .whitespace-nowrap {
3275
+ white-space: nowrap;
3276
+ }
3277
+ .tina-tailwind .rounded-lg {
3278
+ border-radius: 8px;
3279
+ }
3280
+ .tina-tailwind .rounded {
3281
+ border-radius: 4px;
3282
+ }
3283
+ .tina-tailwind .rounded-full {
3284
+ border-radius: 9999px;
3285
+ }
3286
+ .tina-tailwind .rounded-md {
3287
+ border-radius: 6px;
3288
+ }
3289
+ .tina-tailwind .rounded-r-md {
3290
+ border-top-right-radius: 6px;
3291
+ border-bottom-right-radius: 6px;
3292
+ }
3293
+ .tina-tailwind .border {
3294
+ border-width: 1px;
3295
+ }
3296
+ .tina-tailwind .border-b {
3297
+ border-bottom-width: 1px;
3298
+ }
3299
+ .tina-tailwind .border-gray-150 {
3300
+ --tw-border-opacity: 1;
3301
+ border-color: rgb(230 227 239 / var(--tw-border-opacity));
3302
+ }
3303
+ .tina-tailwind .border-gray-200 {
3304
+ --tw-border-opacity: 1;
3305
+ border-color: rgb(225 221 236 / var(--tw-border-opacity));
3306
+ }
3307
+ .tina-tailwind .bg-white {
3308
+ --tw-bg-opacity: 1;
3309
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
3310
+ }
3311
+ .tina-tailwind .bg-gray-50 {
3312
+ --tw-bg-opacity: 1;
3313
+ background-color: rgb(246 246 249 / var(--tw-bg-opacity));
3314
+ }
3315
+ .tina-tailwind .bg-blue-500 {
3316
+ --tw-bg-opacity: 1;
3317
+ background-color: rgb(0 132 255 / var(--tw-bg-opacity));
3318
+ }
3319
+ .tina-tailwind .bg-gradient-to-b {
3320
+ background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
3321
+ }
3322
+ .tina-tailwind .bg-gradient-to-br {
3323
+ background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
3324
+ }
3325
+ .tina-tailwind .from-blue-900 {
3326
+ --tw-gradient-from: #1D2C6C;
3327
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(29 44 108 / 0));
3328
+ }
3329
+ .tina-tailwind .from-gray-800 {
3330
+ --tw-gradient-from: #363145;
3331
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(54 49 69 / 0));
3332
+ }
3333
+ .tina-tailwind .via-gray-900 {
3334
+ --tw-gradient-stops: var(--tw-gradient-from), #252336, var(--tw-gradient-to, rgb(37 35 54 / 0));
3335
+ }
3336
+ .tina-tailwind .to-gray-900 {
3337
+ --tw-gradient-to: #252336;
3338
+ }
3339
+ .tina-tailwind .to-black {
3340
+ --tw-gradient-to: #000;
3341
+ }
3342
+ .tina-tailwind .px-4 {
3343
+ padding-left: 16px;
3344
+ padding-right: 16px;
3345
+ }
3346
+ .tina-tailwind .py-6 {
3347
+ padding-top: 24px;
3348
+ padding-bottom: 24px;
3349
+ }
3350
+ .tina-tailwind .px-5 {
3351
+ padding-left: 20px;
3352
+ padding-right: 20px;
3353
+ }
3354
+ .tina-tailwind .py-4 {
3355
+ padding-top: 16px;
3356
+ padding-bottom: 16px;
3357
+ }
3358
+ .tina-tailwind .px-12 {
3359
+ padding-left: 48px;
3360
+ padding-right: 48px;
3361
+ }
3362
+ .tina-tailwind .py-10 {
3363
+ padding-top: 40px;
3364
+ padding-bottom: 40px;
3365
+ }
3366
+ .tina-tailwind .px-20 {
3367
+ padding-left: 80px;
3368
+ padding-right: 80px;
3369
+ }
3370
+ .tina-tailwind .px-6 {
3371
+ padding-left: 24px;
3372
+ padding-right: 24px;
3373
+ }
3374
+ .tina-tailwind .py-1 {
3375
+ padding-top: 4px;
3376
+ padding-bottom: 4px;
3377
+ }
3378
+ .tina-tailwind .py-2 {
3379
+ padding-top: 8px;
3380
+ padding-bottom: 8px;
3381
+ }
3382
+ .tina-tailwind .py-5 {
3383
+ padding-top: 20px;
3384
+ padding-bottom: 20px;
3385
+ }
3386
+ .tina-tailwind .pt-4 {
3387
+ padding-top: 16px;
3388
+ }
3389
+ .tina-tailwind .pb-4 {
3390
+ padding-bottom: 16px;
3391
+ }
3392
+ .tina-tailwind .pt-18 {
3393
+ padding-top: 72px;
3394
+ }
3395
+ .tina-tailwind .pt-3 {
3396
+ padding-top: 12px;
3397
+ }
3398
+ .tina-tailwind .pl-18 {
3399
+ padding-left: 72px;
3400
+ }
3401
+ .tina-tailwind .text-left {
3402
+ text-align: left;
3403
+ }
3404
+ .tina-tailwind .text-center {
3405
+ text-align: center;
3406
+ }
3407
+ .tina-tailwind .font-sans {
3408
+ font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
3409
+ }
3410
+ .tina-tailwind .text-2xl {
3411
+ font-size: 24px;
3412
+ line-height: 1.33;
3413
+ }
3414
+ .tina-tailwind .text-base {
3415
+ font-size: 16px;
3416
+ line-height: 1.5;
3417
+ }
3418
+ .tina-tailwind .text-sm {
3419
+ font-size: 14px;
3420
+ line-height: 1.43;
3421
+ }
3422
+ .tina-tailwind .text-xl {
3423
+ font-size: 20px;
3424
+ line-height: 1.4;
3425
+ }
3426
+ .tina-tailwind .text-md {
3427
+ font-size: 16px;
3428
+ line-height: 1.5;
3429
+ }
3430
+ .tina-tailwind .text-xs {
3431
+ font-size: 13px;
3432
+ line-height: 1.33;
3433
+ }
3434
+ .tina-tailwind .font-medium {
3435
+ font-weight: 500;
3436
+ }
3437
+ .tina-tailwind .uppercase {
3438
+ text-transform: uppercase;
3439
+ }
3440
+ .tina-tailwind .italic {
3441
+ font-style: italic;
3442
+ }
3443
+ .tina-tailwind .leading-normal {
3444
+ line-height: 1.5;
3445
+ }
3446
+ .tina-tailwind .leading-tight {
3447
+ line-height: 1.25;
3448
+ }
3449
+ .tina-tailwind .leading-5 {
3450
+ line-height: 20px;
3451
+ }
3452
+ .tina-tailwind .tracking-wide {
3453
+ letter-spacing: 0.025em;
3454
+ }
3455
+ .tina-tailwind .text-gray-600 {
3456
+ --tw-text-opacity: 1;
3457
+ color: rgb(86 81 101 / var(--tw-text-opacity));
3458
+ }
3459
+ .tina-tailwind .text-gray-700 {
3460
+ --tw-text-opacity: 1;
3461
+ color: rgb(67 62 82 / var(--tw-text-opacity));
3462
+ }
3463
+ .tina-tailwind .text-blue-600 {
3464
+ --tw-text-opacity: 1;
3465
+ color: rgb(5 116 228 / var(--tw-text-opacity));
3466
+ }
3467
+ .tina-tailwind .text-gray-500 {
3468
+ --tw-text-opacity: 1;
3469
+ color: rgb(113 108 127 / var(--tw-text-opacity));
3470
+ }
3471
+ .tina-tailwind .text-gray-400 {
3472
+ --tw-text-opacity: 1;
3473
+ color: rgb(145 140 158 / var(--tw-text-opacity));
3474
+ }
3475
+ .tina-tailwind .text-current {
3476
+ color: currentColor;
3477
+ }
3478
+ .tina-tailwind .text-white {
3479
+ --tw-text-opacity: 1;
3480
+ color: rgb(255 255 255 / var(--tw-text-opacity));
3481
+ }
3482
+ .tina-tailwind .text-gray-800 {
3483
+ --tw-text-opacity: 1;
3484
+ color: rgb(54 49 69 / var(--tw-text-opacity));
3485
+ }
3486
+ .tina-tailwind .text-gray-900 {
3487
+ --tw-text-opacity: 1;
3488
+ color: rgb(37 35 54 / var(--tw-text-opacity));
3489
+ }
3490
+ .tina-tailwind .text-red-500 {
3491
+ --tw-text-opacity: 1;
3492
+ color: rgb(239 68 68 / var(--tw-text-opacity));
3493
+ }
3494
+ .tina-tailwind .underline {
3495
+ text-decoration-line: underline;
3496
+ }
3497
+ .tina-tailwind .opacity-100 {
3498
+ opacity: 1;
3499
+ }
3500
+ .tina-tailwind .opacity-0 {
3501
+ opacity: 0;
3502
+ }
3503
+ .tina-tailwind .opacity-80 {
3504
+ opacity: .8;
3505
+ }
3506
+ .tina-tailwind .opacity-90 {
3507
+ opacity: .9;
3508
+ }
3509
+ .tina-tailwind .opacity-50 {
3510
+ opacity: .5;
3511
+ }
3512
+ .tina-tailwind .opacity-70 {
3513
+ opacity: .7;
3514
+ }
3515
+ .tina-tailwind .shadow-lg {
3516
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
3517
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
3518
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3519
+ }
3520
+ .tina-tailwind .shadow-2xl {
3521
+ --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
3522
+ --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
3523
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3524
+ }
3525
+ .tina-tailwind .shadow {
3526
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
3527
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
3528
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3529
+ }
3530
+ .tina-tailwind .ring-1 {
3531
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3532
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
3533
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3534
+ }
3535
+ .tina-tailwind .ring-black {
3536
+ --tw-ring-opacity: 1;
3537
+ --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
3538
+ }
3539
+ .tina-tailwind .ring-opacity-5 {
3540
+ --tw-ring-opacity: .05;
3541
+ }
3542
+ .tina-tailwind .filter {
3543
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
3544
+ }
3545
+ .tina-tailwind .transition-opacity {
3546
+ transition-property: opacity;
3547
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3548
+ transition-duration: 150ms;
3549
+ }
3550
+ .tina-tailwind .transition-all {
3551
+ transition-property: all;
3552
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3553
+ transition-duration: 150ms;
3554
+ }
3555
+ .tina-tailwind .transition-colors {
3556
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
3557
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3558
+ transition-duration: 150ms;
3559
+ }
3560
+ .tina-tailwind .transition {
3561
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
3562
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3563
+ transition-duration: 150ms;
3564
+ }
3565
+ .tina-tailwind .duration-300 {
3566
+ transition-duration: 300ms;
3567
+ }
3568
+ .tina-tailwind .duration-200 {
3569
+ transition-duration: 200ms;
3570
+ }
3571
+ .tina-tailwind .duration-150 {
3572
+ transition-duration: 150ms;
3573
+ }
3574
+ .tina-tailwind .duration-100 {
3575
+ transition-duration: 100ms;
3576
+ }
3577
+ .tina-tailwind .duration-75 {
3578
+ transition-duration: 75ms;
3579
+ }
3580
+ .tina-tailwind .ease-out {
3581
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
3582
+ }
3583
+ .tina-tailwind .ease-in {
3584
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
3585
+ }
3586
+ .tina-tailwind .icon-parent svg {
3587
+ fill: currentColor;
3588
+ }
3589
+ .tina-tailwind {
3590
+ font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
3591
+ font-size: 16px;
3592
+ line-height: 1.5;
3593
+ --tw-text-opacity: 1;
3594
+ color: rgb(86 81 101 / var(--tw-text-opacity));
3595
+ }
3596
+ .tina-tailwind .hover\\:bg-blue-600:hover {
3597
+ --tw-bg-opacity: 1;
3598
+ background-color: rgb(5 116 228 / var(--tw-bg-opacity));
3599
+ }
3600
+ .tina-tailwind .hover\\:text-blue-600:hover {
3601
+ --tw-text-opacity: 1;
3602
+ color: rgb(5 116 228 / var(--tw-text-opacity));
3603
+ }
3604
+ .tina-tailwind .hover\\:text-blue-400:hover {
3605
+ --tw-text-opacity: 1;
3606
+ color: rgb(34 150 254 / var(--tw-text-opacity));
3607
+ }
3608
+ .tina-tailwind .hover\\:opacity-100:hover {
3609
+ opacity: 1;
3610
+ }
3611
+ .tina-tailwind .focus\\:text-blue-400:focus {
3612
+ --tw-text-opacity: 1;
3613
+ color: rgb(34 150 254 / var(--tw-text-opacity));
3614
+ }
3615
+ .tina-tailwind .focus\\:underline:focus {
3616
+ text-decoration-line: underline;
3617
+ }
3618
+ .tina-tailwind .focus\\:shadow-outline:focus {
3619
+ --tw-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
3620
+ --tw-shadow-colored: 0 0 0 3px var(--tw-shadow-color);
3621
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3622
+ }
3623
+ .tina-tailwind .focus\\:outline-none:focus {
3624
+ outline: 2px solid transparent;
3625
+ outline-offset: 2px;
3626
+ }
3627
+ .tina-tailwind .focus\\:ring-2:focus {
3628
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3629
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
3630
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3631
+ }
3632
+ .tina-tailwind .focus\\:ring-blue-500:focus {
3633
+ --tw-ring-opacity: 1;
3634
+ --tw-ring-color: rgb(0 132 255 / var(--tw-ring-opacity));
3635
+ }
3636
+ `;
2747
3637
  class ContentCreatorPlugin {
2748
3638
  constructor(options) {
2749
3639
  this.__type = "content-creator";
@@ -3909,7 +4799,7 @@ This will work when developing locally but NOT when deployed to production.
3909
4799
  "children",
3910
4800
  "className"
3911
4801
  ]);
3912
- const baseClasses = "icon-parent inline-flex items-center font-medium focus:outline-none focus:ring-2 focus:shadow-outline text-center inline-flex justify-center transition-all duration-150 ease-out ";
4802
+ const baseClasses = "icon-parent border-0 inline-flex items-center font-medium focus:outline-none focus:ring-2 focus:shadow-outline text-center inline-flex justify-center transition-all duration-150 ease-out ";
3913
4803
  const variantClasses = {
3914
4804
  primary: `shadow text-white bg-blue-500 hover:bg-blue-600 focus:ring-blue-500`,
3915
4805
  secondary: `shadow text-gray-500 hover:text-blue-500 bg-gray-50 hover:bg-white border border-gray-200`,
@@ -4152,7 +5042,7 @@ This will work when developing locally but NOT when deployed to production.
4152
5042
  });
4153
5043
  };
4154
5044
  const DeleteModal = ({ close: close2, deleteFunc, filename }) => {
4155
- return /* @__PURE__ */ React__default["default"].createElement(toolkit.Modal, null, /* @__PURE__ */ React__default["default"].createElement(toolkit.ModalHeader, {
5045
+ return /* @__PURE__ */ React__default["default"].createElement(toolkit.Modal, null, /* @__PURE__ */ React__default["default"].createElement(toolkit.PopupModal, null, /* @__PURE__ */ React__default["default"].createElement(toolkit.ModalHeader, {
4156
5046
  close: close2
4157
5047
  }, "Delete ", filename), /* @__PURE__ */ React__default["default"].createElement(toolkit.ModalBody, {
4158
5048
  padded: true
@@ -4166,7 +5056,7 @@ This will work when developing locally but NOT when deployed to production.
4166
5056
  await deleteFunc();
4167
5057
  close2();
4168
5058
  }
4169
- }, "Delete")));
5059
+ }, "Delete"))));
4170
5060
  };
4171
5061
  function HiChevronRight(props) {
4172
5062
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 20 20", "fill": "currentColor" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z", "clipRule": "evenodd" } }] })(props);