@arkitektbedriftene/fe-lib 0.3.11 → 0.3.13
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/{Popover-2318823a.js → Badge-3f33be41.js} +486 -448
- package/dist/colors.d.ts +1 -1
- package/dist/hooks.d.ts +1 -1
- package/dist/icons.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/oidc.d.ts +1 -1
- package/dist/{lib/rich-text → rich-text}/Editor.d.ts +1 -1
- package/dist/rich-text.d.ts +1 -1
- package/dist/rich-text.es.js +4 -4
- package/dist/ui/components/Badge.d.ts +118 -0
- package/dist/ui/components/Popover.d.ts +142 -0
- package/dist/{lib/ui → ui}/ui.d.ts +1 -0
- package/dist/ui.css.d.ts +1 -1
- package/dist/ui.d.ts +1 -1
- package/dist/ui.es.js +15 -14
- package/package.json +16 -9
- package/.github/workflows/auto-publish.yaml +0 -20
- package/dist/lib/index.d.ts +0 -1
- package/dist/lib/ui/components/Popover.d.ts +0 -23
- package/index.html +0 -13
- package/src/App.css +0 -42
- package/src/App.tsx +0 -44
- package/src/assets/react.svg +0 -1
- package/src/index.css +0 -69
- package/src/lib/colors/colors.ts +0 -19
- package/src/lib/hooks/hooks.ts +0 -3
- package/src/lib/icons/README.md +0 -1
- package/src/lib/icons/icons.tsx +0 -51
- package/src/lib/index.ts +0 -1
- package/src/lib/oidc/README.md +0 -28
- package/src/lib/oidc/firmAccess.ts +0 -36
- package/src/lib/oidc/impersonate.tsx +0 -104
- package/src/lib/oidc/oidc.tsx +0 -248
- package/src/lib/rich-text/Editor.tsx +0 -137
- package/src/lib/rich-text/config.ts +0 -16
- package/src/lib/rich-text/editorContext.ts +0 -34
- package/src/lib/rich-text/rich-text.ts +0 -4
- package/src/lib/rich-text/state.ts +0 -62
- package/src/lib/rich-text/theme.ts +0 -41
- package/src/lib/rich-text/trim.ts +0 -79
- package/src/lib/ui/components/Alert.tsx +0 -63
- package/src/lib/ui/components/Box.tsx +0 -3
- package/src/lib/ui/components/Button.tsx +0 -195
- package/src/lib/ui/components/OverlayCard.tsx +0 -50
- package/src/lib/ui/components/Popover.tsx +0 -164
- package/src/lib/ui/components/Spinner.tsx +0 -102
- package/src/lib/ui/components/Tooltip.tsx +0 -34
- package/src/lib/ui/stitches.config.ts +0 -144
- package/src/lib/ui/ui.css +0 -11
- package/src/lib/ui/ui.ts +0 -9
- package/src/main.tsx +0 -10
- package/src/vite-env.d.ts +0 -1
- package/tsconfig.json +0 -21
- package/tsconfig.node.json +0 -9
- package/vite.config.ts +0 -45
- /package/dist/{lib/colors → colors}/colors.d.ts +0 -0
- /package/dist/{lib/hooks → hooks}/hooks.d.ts +0 -0
- /package/dist/{lib/icons → icons}/icons.d.ts +0 -0
- /package/dist/{lib/oidc → oidc}/firmAccess.d.ts +0 -0
- /package/dist/{lib/oidc → oidc}/impersonate.d.ts +0 -0
- /package/dist/{lib/oidc → oidc}/oidc.d.ts +0 -0
- /package/dist/{lib/rich-text → rich-text}/config.d.ts +0 -0
- /package/dist/{lib/rich-text → rich-text}/editorContext.d.ts +0 -0
- /package/dist/{lib/rich-text → rich-text}/rich-text.d.ts +0 -0
- /package/dist/{lib/rich-text → rich-text}/state.d.ts +0 -0
- /package/dist/{lib/rich-text → rich-text}/theme.d.ts +0 -0
- /package/dist/{lib/rich-text → rich-text}/trim.d.ts +0 -0
- /package/dist/{lib/ui → ui}/components/Alert.d.ts +0 -0
- /package/dist/{lib/ui → ui}/components/Box.d.ts +0 -0
- /package/dist/{lib/ui → ui}/components/Button.d.ts +0 -0
- /package/dist/{lib/ui → ui}/components/OverlayCard.d.ts +0 -0
- /package/dist/{lib/ui → ui}/components/Spinner.d.ts +0 -0
- /package/dist/{lib/ui → ui}/components/Tooltip.d.ts +0 -0
- /package/dist/{lib/ui → ui}/stitches.config.d.ts +0 -0
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
import { forwardRef } from "react";
|
|
2
|
-
import { keyframes, styled } from "../stitches.config";
|
|
3
|
-
|
|
4
|
-
const spinnerKeyframes = keyframes({
|
|
5
|
-
"0%": {
|
|
6
|
-
transform: "rotate(0)",
|
|
7
|
-
},
|
|
8
|
-
"100%": {
|
|
9
|
-
transform: "rotate(360deg)",
|
|
10
|
-
},
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
const spinnerCircleKeyframes = keyframes({
|
|
14
|
-
"0%": {
|
|
15
|
-
strokeDashoffset: 600,
|
|
16
|
-
},
|
|
17
|
-
"100%": {
|
|
18
|
-
strokeDashoffset: 0,
|
|
19
|
-
},
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
const Svg = styled("svg", {
|
|
23
|
-
animation: `${spinnerKeyframes} 2s linear infinite`,
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
const Circle = styled("circle", {
|
|
27
|
-
animation: `${spinnerCircleKeyframes} 1.6s cubic-bezier(0.4, 0.15, 0.6, 0.85) infinite`,
|
|
28
|
-
fill: "transparent",
|
|
29
|
-
stroke: "currentColor",
|
|
30
|
-
strokeDasharray: 300,
|
|
31
|
-
strokeDashoffset: 600,
|
|
32
|
-
strokeLinecap: "round",
|
|
33
|
-
strokeMiterlimit: 10,
|
|
34
|
-
strokeWidth: 12,
|
|
35
|
-
});
|
|
36
|
-
|
|
37
|
-
const SpinnerStyled = styled("div", {
|
|
38
|
-
lineHeight: 0,
|
|
39
|
-
flexShrink: 0,
|
|
40
|
-
|
|
41
|
-
variants: {
|
|
42
|
-
size: {
|
|
43
|
-
xs: {
|
|
44
|
-
width: "1rem",
|
|
45
|
-
height: "1rem",
|
|
46
|
-
},
|
|
47
|
-
sm: {
|
|
48
|
-
width: "1.25rem",
|
|
49
|
-
height: "1.25rem",
|
|
50
|
-
},
|
|
51
|
-
md: {
|
|
52
|
-
width: "1.75rem",
|
|
53
|
-
height: "1.75rem",
|
|
54
|
-
},
|
|
55
|
-
lg: {
|
|
56
|
-
width: "2.25rem",
|
|
57
|
-
height: "2.25rem",
|
|
58
|
-
},
|
|
59
|
-
},
|
|
60
|
-
color: {
|
|
61
|
-
light: {
|
|
62
|
-
color: "$gray200",
|
|
63
|
-
},
|
|
64
|
-
dark: {
|
|
65
|
-
color: "$gray800",
|
|
66
|
-
},
|
|
67
|
-
inherit: {
|
|
68
|
-
color: "inherit",
|
|
69
|
-
},
|
|
70
|
-
},
|
|
71
|
-
},
|
|
72
|
-
|
|
73
|
-
defaultVariants: {
|
|
74
|
-
size: "sm",
|
|
75
|
-
color: "dark",
|
|
76
|
-
},
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
type SpinnerProps = React.ComponentProps<typeof SpinnerStyled>;
|
|
80
|
-
|
|
81
|
-
export const Spinner = forwardRef<HTMLDivElement, SpinnerProps>(
|
|
82
|
-
(props, ref) => {
|
|
83
|
-
return (
|
|
84
|
-
<SpinnerStyled
|
|
85
|
-
ref={ref}
|
|
86
|
-
{...props}
|
|
87
|
-
>
|
|
88
|
-
<Svg
|
|
89
|
-
x="0px"
|
|
90
|
-
y="0px"
|
|
91
|
-
viewBox="0 0 150 150"
|
|
92
|
-
>
|
|
93
|
-
<Circle
|
|
94
|
-
cx="75"
|
|
95
|
-
cy="75"
|
|
96
|
-
r="60"
|
|
97
|
-
/>
|
|
98
|
-
</Svg>
|
|
99
|
-
</SpinnerStyled>
|
|
100
|
-
);
|
|
101
|
-
},
|
|
102
|
-
);
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { useState } from "react";
|
|
2
|
-
import { Popover, PopoverContent, PopoverTrigger } from "./Popover";
|
|
3
|
-
|
|
4
|
-
export const Tooltip = ({ children, content }: {
|
|
5
|
-
children: React.ReactNode;
|
|
6
|
-
content: React.ReactNode
|
|
7
|
-
}) => {
|
|
8
|
-
const [open, setOpen] = useState(false);
|
|
9
|
-
|
|
10
|
-
return (
|
|
11
|
-
<Popover
|
|
12
|
-
open={open}
|
|
13
|
-
onOpenChange={setOpen}
|
|
14
|
-
trigger="hover"
|
|
15
|
-
placement="top"
|
|
16
|
-
offset={{ mainAxis: 8 }}
|
|
17
|
-
role="tooltip"
|
|
18
|
-
>
|
|
19
|
-
<PopoverTrigger>
|
|
20
|
-
{children}
|
|
21
|
-
</PopoverTrigger>
|
|
22
|
-
<PopoverContent overlayCardProps={{
|
|
23
|
-
css: {
|
|
24
|
-
background: "rgba(0,0,0, 0.9)",
|
|
25
|
-
color: "#fff",
|
|
26
|
-
fontSize: "$sm",
|
|
27
|
-
padding: "$1 $2"
|
|
28
|
-
}
|
|
29
|
-
}}>
|
|
30
|
-
{content}
|
|
31
|
-
</PopoverContent>
|
|
32
|
-
</Popover>
|
|
33
|
-
)
|
|
34
|
-
}
|
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
import { createStitches } from "@stitches/react";
|
|
2
|
-
|
|
3
|
-
let zIndex = 9999;
|
|
4
|
-
const createLayerBelow = () => {
|
|
5
|
-
zIndex--;
|
|
6
|
-
return zIndex;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
// Colors from palette: https://accessiblepalette.com/?lightness=98.2,93.9,85,76.2,67,57.8,48,39,31.8,21&A52422=0,0&d6751d=0,0&E4B420=0,0&2e7641=0,0&228997=0,0&6D597A=0,0&6c8184=0,0
|
|
10
|
-
|
|
11
|
-
// 900 has enough contrast on 300
|
|
12
|
-
// 700 has enough contrast on 200
|
|
13
|
-
// 500+ has enough contrast with white
|
|
14
|
-
// 300- has enough contrast with black (or gray900)
|
|
15
|
-
|
|
16
|
-
export const { styled, css, keyframes, globalCss } = createStitches({
|
|
17
|
-
theme: {
|
|
18
|
-
colors: {
|
|
19
|
-
gray50: "#F9FAFA",
|
|
20
|
-
gray100: "#EBEEEE",
|
|
21
|
-
gray200: "#CFD6D7",
|
|
22
|
-
gray300: "#B3BEC0",
|
|
23
|
-
gray400: "#97A6A8",
|
|
24
|
-
gray500: "#7C8E91",
|
|
25
|
-
gray600: "#627578",
|
|
26
|
-
gray700: "#4F5F61",
|
|
27
|
-
gray800: "#414D4F",
|
|
28
|
-
gray900: "#2C3435",
|
|
29
|
-
|
|
30
|
-
blue50: "#F7FBFB",
|
|
31
|
-
blue100: "#E3F0F2",
|
|
32
|
-
blue200: "#BADADF",
|
|
33
|
-
blue300: "#92C5CC",
|
|
34
|
-
blue400: "#67AEB8",
|
|
35
|
-
blue500: "#3C97A3",
|
|
36
|
-
blue600: "#1F7D8A",
|
|
37
|
-
blue700: "#19656F",
|
|
38
|
-
blue800: "#14525B",
|
|
39
|
-
blue900: "#0E383E",
|
|
40
|
-
|
|
41
|
-
yellow50: "#FDFAEF",
|
|
42
|
-
yellow100: "#F9EDCA",
|
|
43
|
-
yellow200: "#EFD27A",
|
|
44
|
-
yellow300: "#E5B626",
|
|
45
|
-
yellow400: "#C89E1C",
|
|
46
|
-
yellow500: "#AA8618",
|
|
47
|
-
yellow600: "#8C6E14",
|
|
48
|
-
yellow700: "#715910",
|
|
49
|
-
yellow800: "#5C490D",
|
|
50
|
-
yellow900: "#3E3109",
|
|
51
|
-
|
|
52
|
-
orange500: "#D1721C",
|
|
53
|
-
|
|
54
|
-
red50: "#FDF9F9",
|
|
55
|
-
red100: "#F7EBEB",
|
|
56
|
-
red200: "#EBCECD",
|
|
57
|
-
red300: "#DFB1B0",
|
|
58
|
-
red400: "#D39392",
|
|
59
|
-
red500: "#C67473",
|
|
60
|
-
red600: "#B85250",
|
|
61
|
-
red700: "#A92F2D",
|
|
62
|
-
red800: "#901F1E",
|
|
63
|
-
red900: "#631614",
|
|
64
|
-
|
|
65
|
-
green50: "#F8FAF9",
|
|
66
|
-
green100: "#E7F0EA",
|
|
67
|
-
green200: "#C5D9CB",
|
|
68
|
-
green300: "#A4C4AD",
|
|
69
|
-
green400: "#82AD8D",
|
|
70
|
-
green500: "#60976F",
|
|
71
|
-
green600: "#3C7F4E",
|
|
72
|
-
green700: "#296839",
|
|
73
|
-
green800: "#21552F",
|
|
74
|
-
green900: "#163920",
|
|
75
|
-
|
|
76
|
-
// Primary
|
|
77
|
-
primaryTextOnLightBg: "#194b58",
|
|
78
|
-
primaryBg: "$blue600",
|
|
79
|
-
primaryBgHover: "$blue700",
|
|
80
|
-
primaryTextOnWhite: "$blue600",
|
|
81
|
-
|
|
82
|
-
bodyGray: "$gray100",
|
|
83
|
-
hoverDarker: "hsla(214deg, 25%, 21%, 0.06)",
|
|
84
|
-
borderDarker: "hsla(214deg, 25%, 21%, 0.1)",
|
|
85
|
-
selectedDarker: "hsla(214deg, 25%, 21%, 0.06)",
|
|
86
|
-
selectedOnBodyGray: "hsl(214deg, 35%, 80%)",
|
|
87
|
-
darkGrayBg: "#1f2937",
|
|
88
|
-
border: "hsl(214deg, 25%, 80%)",
|
|
89
|
-
text: "#1f2937",
|
|
90
|
-
secondaryText: "$gray500",
|
|
91
|
-
focusRing: "hsla(214deg, 15%, 10%, 0.6)",
|
|
92
|
-
},
|
|
93
|
-
fontSizes: {
|
|
94
|
-
xs: "0.75rem", // 12px
|
|
95
|
-
sm: "0.875rem", // 14px
|
|
96
|
-
md: "1rem", // 16px
|
|
97
|
-
lg: "1.125rem", // 18px
|
|
98
|
-
xl: "1.25rem", // 20px
|
|
99
|
-
"2xl": "1.5rem", // 24px
|
|
100
|
-
"3xl": "1.875rem", // 30px
|
|
101
|
-
},
|
|
102
|
-
fontWeights: {
|
|
103
|
-
normal: "var(--ui-font-weight-normal)",
|
|
104
|
-
medium: "var(--ui-font-weight-semibold)",
|
|
105
|
-
bold: "var(--ui-font-weight-bold)",
|
|
106
|
-
},
|
|
107
|
-
space: {
|
|
108
|
-
1: "0.25rem",
|
|
109
|
-
2: "0.5rem",
|
|
110
|
-
3: "0.75rem",
|
|
111
|
-
4: "1rem",
|
|
112
|
-
6: "1.5rem",
|
|
113
|
-
8: "2rem",
|
|
114
|
-
},
|
|
115
|
-
shadows: {
|
|
116
|
-
xs: "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
|
|
117
|
-
sm: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
|
118
|
-
md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
|
119
|
-
lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
|
120
|
-
overlayCard:
|
|
121
|
-
"0 5px 50px 0px rgb(0 0 0 / 0.15), 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
|
122
|
-
},
|
|
123
|
-
radii: {
|
|
124
|
-
xs: "0.125rem",
|
|
125
|
-
sm: "0.25rem",
|
|
126
|
-
md: "0.5rem",
|
|
127
|
-
mdmd: "calc(0.5rem - 0.125rem)",
|
|
128
|
-
full: "9999px",
|
|
129
|
-
},
|
|
130
|
-
zIndices: {
|
|
131
|
-
/**
|
|
132
|
-
* By using createLayerBelow() we can order the list of layers.
|
|
133
|
-
* Layers higher up will be on top of layers lower down.
|
|
134
|
-
*/
|
|
135
|
-
toast: createLayerBelow(),
|
|
136
|
-
overlayCard: createLayerBelow(),
|
|
137
|
-
modal: createLayerBelow(),
|
|
138
|
-
},
|
|
139
|
-
},
|
|
140
|
-
media: {
|
|
141
|
-
lg: "(min-width: 1200px)",
|
|
142
|
-
print: "print",
|
|
143
|
-
},
|
|
144
|
-
});
|
package/src/lib/ui/ui.css
DELETED
package/src/lib/ui/ui.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export * from './stitches.config';
|
|
2
|
-
|
|
3
|
-
export * from './components/Button';
|
|
4
|
-
export * from './components/Spinner';
|
|
5
|
-
export * from './components/Alert';
|
|
6
|
-
export * from './components/OverlayCard';
|
|
7
|
-
export * from './components/Popover';
|
|
8
|
-
export * from './components/Box';
|
|
9
|
-
export * from './components/Tooltip';
|
package/src/main.tsx
DELETED
package/src/vite-env.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="vite/client" />
|
package/tsconfig.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ESNext",
|
|
4
|
-
"useDefineForClassFields": true,
|
|
5
|
-
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
6
|
-
"allowJs": false,
|
|
7
|
-
"skipLibCheck": true,
|
|
8
|
-
"esModuleInterop": false,
|
|
9
|
-
"allowSyntheticDefaultImports": true,
|
|
10
|
-
"strict": true,
|
|
11
|
-
"forceConsistentCasingInFileNames": true,
|
|
12
|
-
"module": "ESNext",
|
|
13
|
-
"moduleResolution": "Node",
|
|
14
|
-
"resolveJsonModule": true,
|
|
15
|
-
"isolatedModules": true,
|
|
16
|
-
"noEmit": true,
|
|
17
|
-
"jsx": "react-jsx"
|
|
18
|
-
},
|
|
19
|
-
"include": ["src"],
|
|
20
|
-
"references": [{ "path": "./tsconfig.node.json" }]
|
|
21
|
-
}
|
package/tsconfig.node.json
DELETED
package/vite.config.ts
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from "vite";
|
|
2
|
-
import react from "@vitejs/plugin-react-swc";
|
|
3
|
-
import dts from "vite-plugin-dts";
|
|
4
|
-
|
|
5
|
-
// https://vitejs.dev/config/
|
|
6
|
-
export default defineConfig({
|
|
7
|
-
build: {
|
|
8
|
-
cssCodeSplit: true,
|
|
9
|
-
lib: {
|
|
10
|
-
entry: [
|
|
11
|
-
"src/lib/index.ts",
|
|
12
|
-
"src/lib/oidc/oidc.tsx",
|
|
13
|
-
"src/lib/hooks/hooks.ts",
|
|
14
|
-
"src/lib/icons/icons.tsx",
|
|
15
|
-
"src/lib/colors/colors.ts",
|
|
16
|
-
"src/lib/rich-text/rich-text.ts",
|
|
17
|
-
"src/lib/ui/ui.ts",
|
|
18
|
-
"src/lib/ui/ui.css",
|
|
19
|
-
],
|
|
20
|
-
name: "fe-lib",
|
|
21
|
-
formats: ["es"],
|
|
22
|
-
fileName: (format, entryname) => `${entryname}.${format}.js`,
|
|
23
|
-
},
|
|
24
|
-
rollupOptions: {
|
|
25
|
-
external: [
|
|
26
|
-
"react",
|
|
27
|
-
"react-dom",
|
|
28
|
-
"lexical",
|
|
29
|
-
/^@lexical\/.*/,
|
|
30
|
-
],
|
|
31
|
-
output: {
|
|
32
|
-
globals: {
|
|
33
|
-
react: "React",
|
|
34
|
-
"react-dom": "ReactDOM",
|
|
35
|
-
},
|
|
36
|
-
},
|
|
37
|
-
},
|
|
38
|
-
},
|
|
39
|
-
plugins: [
|
|
40
|
-
react(),
|
|
41
|
-
dts({
|
|
42
|
-
insertTypesEntry: true,
|
|
43
|
-
}),
|
|
44
|
-
],
|
|
45
|
-
});
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|