release: add ErrorPopup component and export
This commit is contained in:
BIN
assets/limelight_logo.png
Normal file
BIN
assets/limelight_logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 70 KiB |
BIN
assets/preview.png
Normal file
BIN
assets/preview.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 23 KiB |
2
dist/App.vue.d.ts
vendored
Normal file
2
dist/App.vue.d.ts
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
||||||
|
export default _default;
|
||||||
BIN
dist/assets/limelight_logo.png
vendored
Normal file
BIN
dist/assets/limelight_logo.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 70 KiB |
BIN
dist/assets/preview.png
vendored
Normal file
BIN
dist/assets/preview.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 23 KiB |
11
dist/components/ErrorPopup.vue.d.ts
vendored
Normal file
11
dist/components/ErrorPopup.vue.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
type __VLS_Props = {
|
||||||
|
message: string | null;
|
||||||
|
show: boolean;
|
||||||
|
title?: string;
|
||||||
|
};
|
||||||
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
||||||
|
close: () => any;
|
||||||
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
||||||
|
onClose?: (() => any) | undefined;
|
||||||
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
||||||
|
export default _default;
|
||||||
21
dist/components/LimelightButton.vue.d.ts
vendored
Normal file
21
dist/components/LimelightButton.vue.d.ts
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
type __VLS_Props = {
|
||||||
|
variant?: 'primary' | 'outline' | 'ghost' | 'danger';
|
||||||
|
disabled?: boolean;
|
||||||
|
};
|
||||||
|
declare function __VLS_template(): {
|
||||||
|
attrs: Partial<{}>;
|
||||||
|
slots: {
|
||||||
|
default?(_: {}): any;
|
||||||
|
};
|
||||||
|
refs: {};
|
||||||
|
rootEl: HTMLButtonElement;
|
||||||
|
};
|
||||||
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
||||||
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
||||||
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
||||||
|
export default _default;
|
||||||
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
||||||
|
new (): {
|
||||||
|
$slots: S;
|
||||||
|
};
|
||||||
|
};
|
||||||
2
dist/env.d.ts
vendored
Normal file
2
dist/env.d.ts
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
/// <reference path="./utils/filemaker.d.ts" />
|
||||||
|
/// <reference types="vite/client" />
|
||||||
1
dist/index.css
vendored
Normal file
1
dist/index.css
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */.btn[data-v-e0bc8f43]{height:calc(var(--spacing,.25rem) * 10);font-size:var(--text-sm,.875rem);line-height:var(--tw-leading,var(--text-sm--line-height,calc(1.25 / .875)));letter-spacing:.06em;text-transform:uppercase;cursor:pointer;clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);-webkit-user-select:none;user-select:none;border:none;padding:0 1.5rem;font-family:Barlow,sans-serif;font-weight:700;transition:background .15s,color .15s,border-color .15s,transform .1s}.btn--primary[data-v-e0bc8f43]{background:var(--color-primary);color:var(--color-black)}.btn--primary[data-v-e0bc8f43]:hover{background:var(--color-primary-light);transform:scaleX(1.03)}.btn--outline[data-v-e0bc8f43]{color:var(--color-primary);border:1.5px solid var(--color-primary);background:0 0}.btn--outline[data-v-e0bc8f43]:hover{background:var(--color-primary-dark);transform:scaleX(1.03)}.btn--ghost[data-v-e0bc8f43]{color:var(--color-secondary-light);border:1px solid var(--color-secondary-light);background:0 0}.btn--ghost[data-v-e0bc8f43]:hover{color:var(--color-primary);border-color:var(--color-primary);transform:scaleX(1.03)}.btn--danger[data-v-e0bc8f43]{background:var(--color-red);color:#fff}.btn--danger[data-v-e0bc8f43]:hover{filter:brightness(1.2);transform:scaleX(1.03)}.btn[data-v-e0bc8f43]:active{transform:scale(.97)}.btn--disabled[data-v-e0bc8f43]{opacity:.5;cursor:not-allowed}.btn--disabled[data-v-e0bc8f43]:hover{transform:scale(1)!important}
|
||||||
3
dist/index.d.ts
vendored
Normal file
3
dist/index.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
export { default as LimelightButton } from './components/LimelightButton.vue';
|
||||||
|
export { default as ErrorPopup } from './components/ErrorPopup.vue';
|
||||||
|
export * from './utils/webviewer';
|
||||||
114
dist/index.js
vendored
Normal file
114
dist/index.js
vendored
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
import { defineComponent as d, openBlock as c, createElementBlock as f, normalizeClass as m, renderSlot as p, createElementVNode as r, toDisplayString as a, createVNode as b, withCtx as k, createTextVNode as v, createCommentVNode as g } from "vue";
|
||||||
|
const h = ["disabled"], w = /* @__PURE__ */ d({
|
||||||
|
__name: "LimelightButton",
|
||||||
|
props: {
|
||||||
|
variant: {},
|
||||||
|
disabled: { type: Boolean }
|
||||||
|
},
|
||||||
|
setup(e) {
|
||||||
|
return (i, n) => (c(), f("button", {
|
||||||
|
type: "button",
|
||||||
|
class: m(["btn", [e.variant && `btn--${e.variant}`, { "btn--disabled": e.disabled }]]),
|
||||||
|
disabled: e.disabled
|
||||||
|
}, [
|
||||||
|
p(i.$slots, "default", {}, void 0, !0)
|
||||||
|
], 10, h));
|
||||||
|
}
|
||||||
|
}), x = (e, i) => {
|
||||||
|
const n = e.__vccOpts || e;
|
||||||
|
for (const [t, s] of i)
|
||||||
|
n[t] = s;
|
||||||
|
return n;
|
||||||
|
}, y = /* @__PURE__ */ x(w, [["__scopeId", "data-v-e0bc8f43"]]), M = {
|
||||||
|
key: 0,
|
||||||
|
class: "fixed inset-0 z-50 flex items-center justify-center"
|
||||||
|
}, F = { class: "relative bg-secondary border border-red-500/40 rounded-2xl p-5 max-w-sm w-[90%] shadow-xl" }, _ = { class: "flex items-center gap-3 mb-3" }, C = { class: "text-white font-semibold" }, S = { class: "text-white/80 text-sm whitespace-pre-line" }, P = /* @__PURE__ */ d({
|
||||||
|
__name: "ErrorPopup",
|
||||||
|
props: {
|
||||||
|
message: {},
|
||||||
|
show: { type: Boolean },
|
||||||
|
title: {}
|
||||||
|
},
|
||||||
|
emits: ["close"],
|
||||||
|
setup(e, { emit: i }) {
|
||||||
|
return (n, t) => e.show && e.message ? (c(), f("div", M, [
|
||||||
|
r("div", {
|
||||||
|
class: "absolute inset-0 bg-black/60",
|
||||||
|
onClick: t[0] || (t[0] = (s) => n.$emit("close"))
|
||||||
|
}),
|
||||||
|
r("div", F, [
|
||||||
|
r("div", _, [
|
||||||
|
t[2] || (t[2] = r("div", { class: "w-10 h-10 rounded-full bg-red/15 flex items-center justify-center" }, [
|
||||||
|
r("svg", {
|
||||||
|
class: "w-5 h-5 text-red",
|
||||||
|
fill: "none",
|
||||||
|
stroke: "currentColor",
|
||||||
|
viewBox: "0 0 24 24"
|
||||||
|
}, [
|
||||||
|
r("path", {
|
||||||
|
"stroke-linecap": "round",
|
||||||
|
"stroke-linejoin": "round",
|
||||||
|
"stroke-width": "2",
|
||||||
|
d: "M12 9v2m0 4h.01M10.29 3.86l-8.2 14A1.5 1.5 0 003.3 20h16.4a1.5 1.5 0 001.21-2.14l-8.2-14a1.5 1.5 0 00-2.42 0z"
|
||||||
|
})
|
||||||
|
])
|
||||||
|
], -1)),
|
||||||
|
r("p", C, a(e.title ?? "Verbindungsfehler"), 1)
|
||||||
|
]),
|
||||||
|
r("p", S, a(e.message), 1),
|
||||||
|
b(y, {
|
||||||
|
variant: "danger",
|
||||||
|
class: "mt-4 w-full",
|
||||||
|
onClick: t[1] || (t[1] = (s) => n.$emit("close"))
|
||||||
|
}, {
|
||||||
|
default: k(() => [...t[3] || (t[3] = [
|
||||||
|
v(" OK ", -1)
|
||||||
|
])]),
|
||||||
|
_: 1
|
||||||
|
})
|
||||||
|
])
|
||||||
|
])) : g("", !0);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
function O(e, i) {
|
||||||
|
return typeof FileMaker > "u" ? !1 : (FileMaker.PerformScript(e, i), !0);
|
||||||
|
}
|
||||||
|
function V(e, i, n) {
|
||||||
|
return typeof FileMaker > "u" ? !1 : (FileMaker.PerformScriptWithOption(e, i, n), !0);
|
||||||
|
}
|
||||||
|
const o = /* @__PURE__ */ new Map();
|
||||||
|
let $ = 1;
|
||||||
|
function T(e, i = "", n) {
|
||||||
|
return new Promise((t, s) => {
|
||||||
|
if (typeof FileMaker > "u") {
|
||||||
|
s({ callbackId: -1, message: "FileMaker runtime not available" });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const l = $++;
|
||||||
|
o.set(l, { resolve: t, reject: s });
|
||||||
|
const u = { callbackId: l, parameter: i };
|
||||||
|
FileMaker.PerformScript(e, JSON.stringify(u)), n !== void 0 && setTimeout(() => {
|
||||||
|
o.has(l) && (o.delete(l), s({ callbackId: l, message: `Timed out after ${n}ms` }));
|
||||||
|
}, n);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function z(e, i = "", n) {
|
||||||
|
const t = parseInt(e), s = o.get(t);
|
||||||
|
s && (o.delete(t), n ? s.reject({ callbackId: t, message: i }) : s.resolve(i));
|
||||||
|
}
|
||||||
|
function B(e, i, n = 10, t = 0) {
|
||||||
|
I() ? e() : t >= n ? i == null || i() : setTimeout(() => B(e, i, n, t + 1), 100);
|
||||||
|
}
|
||||||
|
function I() {
|
||||||
|
return typeof FileMaker < "u";
|
||||||
|
}
|
||||||
|
export {
|
||||||
|
P as ErrorPopup,
|
||||||
|
y as LimelightButton,
|
||||||
|
T as callFileMakerScript,
|
||||||
|
I as isFileMakerEnvironment,
|
||||||
|
O as performScript,
|
||||||
|
V as performScriptWithOption,
|
||||||
|
z as resolveFileMakerCallback,
|
||||||
|
B as waitForFileMaker
|
||||||
|
};
|
||||||
1
dist/index.umd.cjs
vendored
Normal file
1
dist/index.umd.cjs
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
(function(o,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(o=typeof globalThis<"u"?globalThis:o||self,e(o.LimelightCommonWebComponents={},o.Vue))})(this,(function(o,e){"use strict";const m=["disabled"],d=((t,i)=>{const l=t.__vccOpts||t;for(const[n,r]of i)l[n]=r;return l})(e.defineComponent({__name:"LimelightButton",props:{variant:{},disabled:{type:Boolean}},setup(t){return(i,l)=>(e.openBlock(),e.createElementBlock("button",{type:"button",class:e.normalizeClass(["btn",[t.variant&&`btn--${t.variant}`,{"btn--disabled":t.disabled}]]),disabled:t.disabled},[e.renderSlot(i.$slots,"default",{},void 0,!0)],10,m))}}),[["__scopeId","data-v-e0bc8f43"]]),p={key:0,class:"fixed inset-0 z-50 flex items-center justify-center"},u={class:"relative bg-secondary border border-red-500/40 rounded-2xl p-5 max-w-sm w-[90%] shadow-xl"},k={class:"flex items-center gap-3 mb-3"},b={class:"text-white font-semibold"},g={class:"text-white/80 text-sm whitespace-pre-line"},h=e.defineComponent({__name:"ErrorPopup",props:{message:{},show:{type:Boolean},title:{}},emits:["close"],setup(t,{emit:i}){return(l,n)=>t.show&&t.message?(e.openBlock(),e.createElementBlock("div",p,[e.createElementVNode("div",{class:"absolute inset-0 bg-black/60",onClick:n[0]||(n[0]=r=>l.$emit("close"))}),e.createElementVNode("div",u,[e.createElementVNode("div",k,[n[2]||(n[2]=e.createElementVNode("div",{class:"w-10 h-10 rounded-full bg-red/15 flex items-center justify-center"},[e.createElementVNode("svg",{class:"w-5 h-5 text-red",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[e.createElementVNode("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 9v2m0 4h.01M10.29 3.86l-8.2 14A1.5 1.5 0 003.3 20h16.4a1.5 1.5 0 001.21-2.14l-8.2-14a1.5 1.5 0 00-2.42 0z"})])],-1)),e.createElementVNode("p",b,e.toDisplayString(t.title??"Verbindungsfehler"),1)]),e.createElementVNode("p",g,e.toDisplayString(t.message),1),e.createVNode(d,{variant:"danger",class:"mt-4 w-full",onClick:n[1]||(n[1]=r=>l.$emit("close"))},{default:e.withCtx(()=>[...n[3]||(n[3]=[e.createTextVNode(" OK ",-1)])]),_:1})])])):e.createCommentVNode("",!0)}});function y(t,i){return typeof FileMaker>"u"?!1:(FileMaker.PerformScript(t,i),!0)}function M(t,i,l){return typeof FileMaker>"u"?!1:(FileMaker.PerformScriptWithOption(t,i,l),!0)}const s=new Map;let w=1;function F(t,i="",l){return new Promise((n,r)=>{if(typeof FileMaker>"u"){r({callbackId:-1,message:"FileMaker runtime not available"});return}const a=w++;s.set(a,{resolve:n,reject:r});const S={callbackId:a,parameter:i};FileMaker.PerformScript(t,JSON.stringify(S)),l!==void 0&&setTimeout(()=>{s.has(a)&&(s.delete(a),r({callbackId:a,message:`Timed out after ${l}ms`}))},l)})}function _(t,i="",l){const n=parseInt(t),r=s.get(n);r&&(s.delete(n),l?r.reject({callbackId:n,message:i}):r.resolve(i))}function c(t,i,l=10,n=0){f()?t():n>=l?i==null||i():setTimeout(()=>c(t,i,l,n+1),100)}function f(){return typeof FileMaker<"u"}o.ErrorPopup=h,o.LimelightButton=d,o.callFileMakerScript=F,o.isFileMakerEnvironment=f,o.performScript=y,o.performScriptWithOption=M,o.resolveFileMakerCallback=_,o.waitForFileMaker=c,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})}));
|
||||||
0
dist/main.d.ts
vendored
Normal file
0
dist/main.d.ts
vendored
Normal file
106
dist/utils/webviewer.d.ts
vendored
Normal file
106
dist/utils/webviewer.d.ts
vendored
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
/** The FileMaker object injected by the runtime into web viewers. */
|
||||||
|
export interface FileMakerAPI {
|
||||||
|
PerformScript(script: string, parameter?: string): void;
|
||||||
|
PerformScriptWithOption(script: string, parameter?: string, option?: ScriptOption): void;
|
||||||
|
}
|
||||||
|
declare global {
|
||||||
|
/** Available only inside a FileMaker web viewer. Always guard with `typeof FileMaker !== 'undefined'`. */
|
||||||
|
const FileMaker: FileMakerAPI | undefined;
|
||||||
|
interface Window {
|
||||||
|
resolveFileMakerCallback: typeof resolveFileMakerCallback;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Controls how a currently running FileMaker script is handled when a new
|
||||||
|
* script is started via `FileMaker.PerformScriptWithOption`.
|
||||||
|
*
|
||||||
|
* | Value | Behaviour |
|
||||||
|
* |-------|------------------------------------------------------------------|
|
||||||
|
* | "0" | Pause the current script, run the new one, then resume |
|
||||||
|
* | "1" | Abort the current script and run the new one |
|
||||||
|
* | "2" | Exit the current script and run the new one |
|
||||||
|
* | "3" | Run the new script concurrently (default async behaviour) |
|
||||||
|
* | "4" | Trigger script (same as 3 but fires as a script trigger would) |
|
||||||
|
* | "5" | Suspend the current script; resume it after the new one exits |
|
||||||
|
*/
|
||||||
|
export type ScriptOption = '0' | '1' | '2' | '3' | '4' | '5';
|
||||||
|
/**
|
||||||
|
* Type-safe wrapper that calls `FileMaker.PerformScript` only when the
|
||||||
|
* runtime is available (i.e. the page is running inside a web viewer).
|
||||||
|
*
|
||||||
|
* @returns `true` if the script was dispatched, `false` otherwise.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* performScript("Delete Record", String(recordId));
|
||||||
|
*/
|
||||||
|
export declare function performScript(script: string, parameter?: string): boolean;
|
||||||
|
/**
|
||||||
|
* Type-safe wrapper around `FileMaker.PerformScriptWithOption`.
|
||||||
|
*
|
||||||
|
* @returns `true` if the script was dispatched, `false` otherwise.
|
||||||
|
*/
|
||||||
|
export declare function performScriptWithOption(script: string, parameter?: string, option?: ScriptOption): boolean;
|
||||||
|
/** Error thrown when a FileMaker script signals failure. */
|
||||||
|
export interface FileMakerScriptError {
|
||||||
|
/** The callback ID that was active when the error occurred. */
|
||||||
|
callbackId: number;
|
||||||
|
/** Optional error message forwarded from the FileMaker script. */
|
||||||
|
message?: string;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Invokes a FileMaker script and returns a `Promise` that resolves when
|
||||||
|
* FileMaker calls back into JavaScript via {@link resolveFileMakerCallback}.
|
||||||
|
*
|
||||||
|
* **FileMaker side:** the script must eventually call
|
||||||
|
* *Perform JavaScript in Web Viewer* targeting `resolveFileMakerCallback`
|
||||||
|
* and pass back the same `callbackId` together with the result data.
|
||||||
|
*
|
||||||
|
* ```
|
||||||
|
* // FileMaker script (pseudocode)
|
||||||
|
* Set Variable [$payload ; Value: Get(ScriptParameter)]
|
||||||
|
* Set Variable [$id ; Value: JSONGetElement($payload; "callbackId")]
|
||||||
|
* Set Variable [$result ; Value: \* … your work … *\]
|
||||||
|
* Perform JavaScript in Web Viewer [
|
||||||
|
* Object Name: "MyWebViewer"
|
||||||
|
* Function: "resolveFileMakerCallback"
|
||||||
|
* Parameters: $id, $result
|
||||||
|
* ]
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* @param script - FileMaker script name.
|
||||||
|
* @param parameter - Arbitrary string payload for the script.
|
||||||
|
* @param timeout - Optional ms before the promise is rejected automatically
|
||||||
|
* (defaults to no timeout).
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const json = await callFileMakerScript("Get Customer", String(customerId));
|
||||||
|
* const customer = JSON.parse(json);
|
||||||
|
*/
|
||||||
|
export declare function callFileMakerScript(script: string, parameter?: string, timeout?: number): Promise<string>;
|
||||||
|
/**
|
||||||
|
* Must be exposed as a global function so that FileMaker's
|
||||||
|
* *Perform JavaScript in Web Viewer* script step can invoke it.
|
||||||
|
*
|
||||||
|
* Call this from your FileMaker script to resolve a promise created by
|
||||||
|
* {@link callFileMakerScript}.
|
||||||
|
*
|
||||||
|
* @param callbackId - The numeric ID forwarded from the script parameter.
|
||||||
|
* @param result - The string result to hand back to JavaScript.
|
||||||
|
* @param isError - When truthy, the promise is rejected instead.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Expose globally so FileMaker can reach it
|
||||||
|
* (window as any).resolveFileMakerCallback = resolveFileMakerCallback;
|
||||||
|
*/
|
||||||
|
export declare function resolveFileMakerCallback(callbackId: string, result?: string, isError?: boolean): void;
|
||||||
|
export declare function waitForFileMaker(callback: () => void, onError?: () => void, maxAttempts?: number, // 1 Sekunde bei 100ms Intervall
|
||||||
|
attempt?: number): void;
|
||||||
|
/**
|
||||||
|
* Returns `true` when the page is running inside a FileMaker web viewer.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* if (isFileMakerEnvironment()) {
|
||||||
|
* FileMaker!.PerformScript("On Load");
|
||||||
|
* }
|
||||||
|
*/
|
||||||
|
export declare function isFileMakerEnvironment(): boolean;
|
||||||
79
font.css
Normal file
79
font.css
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
/* Light */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-Light.ttf') format('truetype');
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-LightItalic.ttf') format('truetype');
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: italic;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Regular */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-Regular.ttf') format('truetype');
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-Italic.ttf') format('truetype');
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* SemiBold */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-SemiBold.ttf') format('truetype');
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf') format('truetype');
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: italic;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bold */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-Bold.ttf') format('truetype');
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-BoldItalic.ttf') format('truetype');
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: italic;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ExtraBold */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-ExtraBold.ttf') format('truetype');
|
||||||
|
font-weight: 800;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
src: url('./fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf') format('truetype');
|
||||||
|
font-weight: 800;
|
||||||
|
font-style: italic;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
BIN
fonts/Open_Sans/.DS_Store
vendored
Normal file
BIN
fonts/Open_Sans/.DS_Store
vendored
Normal file
Binary file not shown.
202
fonts/Open_Sans/LICENSE.txt
Normal file
202
fonts/Open_Sans/LICENSE.txt
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
BIN
fonts/Open_Sans/OpenSans-Bold.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-BoldItalic.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-ExtraBold.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-Italic.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-Light.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-Light.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-LightItalic.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-LightItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-Regular.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-Regular.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-Semibold.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-Semibold.ttf
Normal file
Binary file not shown.
BIN
fonts/Open_Sans/OpenSans-SemiboldItalic.ttf
Normal file
BIN
fonts/Open_Sans/OpenSans-SemiboldItalic.ttf
Normal file
Binary file not shown.
49
package.json
Normal file
49
package.json
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
"name": "limelight-common-web-components",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"license": "MIT",
|
||||||
|
"type": "module",
|
||||||
|
"files": [
|
||||||
|
"dist",
|
||||||
|
"font.css",
|
||||||
|
"theme.css",
|
||||||
|
"fonts",
|
||||||
|
"assets"
|
||||||
|
],
|
||||||
|
"main": "./dist/index.cjs",
|
||||||
|
"module": "./dist/index.js",
|
||||||
|
"types": "./dist/index.d.ts",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"types": "./dist/index.d.ts",
|
||||||
|
"import": "./dist/index.js",
|
||||||
|
"require": "./dist/index.cjs"
|
||||||
|
},
|
||||||
|
"./style.css": "./dist/index.css",
|
||||||
|
"./theme.css": "./theme.css",
|
||||||
|
"./assets/*": "./dist/assets/*"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"vue": "^3.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@tailwindcss/vite": "^4.0.0",
|
||||||
|
"@vitejs/plugin-vue": "^5.0.0",
|
||||||
|
"@vue/test-utils": "^2.4.6",
|
||||||
|
"jsdom": "^27.0.1",
|
||||||
|
"tailwindcss": "^4.0.0",
|
||||||
|
"typescript": "^5.0.0",
|
||||||
|
"vite": "^6.0.0",
|
||||||
|
"vite-plugin-dts": "^4.5.4",
|
||||||
|
"vite-plugin-static-copy": "^3.4.0",
|
||||||
|
"vitest": "^3.2.4",
|
||||||
|
"vue": "^3.5.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"serve": "vite",
|
||||||
|
"build": "vite build",
|
||||||
|
"dev": "vite build --watch",
|
||||||
|
"test": "vitest run",
|
||||||
|
"test:watch": "vitest"
|
||||||
|
}
|
||||||
|
}
|
||||||
29
theme.css
Normal file
29
theme.css
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
@import './font.css';
|
||||||
|
|
||||||
|
@theme {
|
||||||
|
--color-black: #000;
|
||||||
|
--color-white: #fff;
|
||||||
|
|
||||||
|
--color-primary: #ffff00;
|
||||||
|
--color-primary-dark: #504e18;
|
||||||
|
--color-primary-light: #ffff7b;
|
||||||
|
|
||||||
|
--color-secondary: #404040;
|
||||||
|
--color-secondary-light: #6b6b6b;
|
||||||
|
--color-secondary-dark: #2a2800;
|
||||||
|
|
||||||
|
--color-alive: oklch(69.6% 0.17 162.48); /* Tailwind emerald-500*/
|
||||||
|
|
||||||
|
--color-green: oklch(62.7% 0.194 149.214); /* Tailwind green-600 */
|
||||||
|
--color-yellow: oklch(68.1% 0.162 75.834); /* Tailwind yellow-600 */
|
||||||
|
--color-red: oklch(57.7% 0.245 27.325); /* Tailwind red-600 */
|
||||||
|
|
||||||
|
--color-on-primary: var(--color-secondary);
|
||||||
|
--color-on-secondary: var(--color-white);
|
||||||
|
--color-hover: var(--color-primary-dark);
|
||||||
|
|
||||||
|
--font-limelight: 'Open Sans';
|
||||||
|
--default-font-family: var(--font-limelight);
|
||||||
|
--breakpoint-3xl: 112rem;
|
||||||
|
--breakpoint-4xl: 128rem;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user