@kopexa/theme 1.7.3 → 1.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-7BZAMXH2.mjs +14 -0
- package/dist/{chunk-HU3STCSK.mjs → chunk-EOJ5ZYSL.mjs} +1 -1
- package/dist/{chunk-OFCZZVGK.mjs → chunk-I4ZIT7EK.mjs} +2 -1
- package/dist/{chunk-CQZMQVAO.mjs → chunk-JHKTRIIA.mjs} +1 -1
- package/dist/{chunk-QDDPXEQO.mjs → chunk-OLYO7UPH.mjs} +1 -1
- package/dist/{chunk-KRTETJ33.mjs → chunk-ROZ24JVQ.mjs} +1 -1
- package/dist/chunk-SHHD2WUZ.mjs +99 -0
- package/dist/chunk-TPFAZH22.mjs +17 -0
- package/dist/{chunk-HALNIEC7.mjs → chunk-U32YEQZ5.mjs} +1 -1
- package/dist/{chunk-CWX7ZJ4B.mjs → chunk-W42CPA2F.mjs} +1 -1
- package/dist/{chunk-V5U46MEN.mjs → chunk-WSEO3MLK.mjs} +1 -1
- package/dist/components/avatar.js +1 -1
- package/dist/components/avatar.mjs +2 -2
- package/dist/components/button.js +1 -1
- package/dist/components/button.mjs +2 -2
- package/dist/components/chip.js +1 -1
- package/dist/components/chip.mjs +2 -2
- package/dist/components/code.js +1 -1
- package/dist/components/code.mjs +2 -2
- package/dist/components/framework-row.d.mts +48 -0
- package/dist/components/framework-row.d.ts +48 -0
- package/dist/components/framework-row.js +41 -0
- package/dist/components/framework-row.mjs +6 -0
- package/dist/components/index.d.mts +3 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +172 -48
- package/dist/components/index.mjs +39 -27
- package/dist/components/related-control-chip.d.mts +38 -0
- package/dist/components/related-control-chip.d.ts +38 -0
- package/dist/components/related-control-chip.js +38 -0
- package/dist/components/related-control-chip.mjs +6 -0
- package/dist/components/section-row.d.mts +3 -0
- package/dist/components/section-row.d.ts +3 -0
- package/dist/components/section-row.js +2 -1
- package/dist/components/section-row.mjs +1 -1
- package/dist/components/skeleton-avatar.js +1 -1
- package/dist/components/skeleton-avatar.mjs +3 -3
- package/dist/components/standard-chip.d.mts +575 -0
- package/dist/components/standard-chip.d.ts +575 -0
- package/dist/components/standard-chip.js +491 -0
- package/dist/components/standard-chip.mjs +8 -0
- package/dist/components/tooltip.js +1 -1
- package/dist/components/tooltip.mjs +1 -1
- package/dist/index.css +41 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +172 -48
- package/dist/index.mjs +39 -27
- package/dist/utils/variants.js +1 -1
- package/dist/utils/variants.mjs +1 -1
- package/package.json +2 -2
- /package/dist/{chunk-MVXKHHAX.mjs → chunk-KEHIJEFK.mjs} +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// src/components/related-control-chip.ts
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
var relatedControlChip = tv({
|
|
4
|
+
slots: {
|
|
5
|
+
root: [
|
|
6
|
+
"text-xs border rounded-full cursor-pointer hover:text-primary px-2.5 py-0.5"
|
|
7
|
+
],
|
|
8
|
+
tooltip: "text-xs"
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export {
|
|
13
|
+
relatedControlChip
|
|
14
|
+
};
|
|
@@ -24,7 +24,8 @@ var sectionRow = tv({
|
|
|
24
24
|
valueContainer: "col-start-1"
|
|
25
25
|
},
|
|
26
26
|
horizontalCentered: {
|
|
27
|
-
root: "sm:grid-cols-[min(33%,--spacing(80))_auto] sm:items-center"
|
|
27
|
+
root: "sm:grid-cols-[min(33%,--spacing(80))_auto] sm:items-center",
|
|
28
|
+
valueContainer: "items-center"
|
|
28
29
|
}
|
|
29
30
|
},
|
|
30
31
|
spacing: {
|
|
@@ -3,7 +3,7 @@ import { tv } from "tailwind-variants";
|
|
|
3
3
|
var tooltip = tv({
|
|
4
4
|
slots: {
|
|
5
5
|
content: [
|
|
6
|
-
"bg-primary text-primary-foreground",
|
|
6
|
+
"bg-primary-900 text-primary-foreground",
|
|
7
7
|
"animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
8
8
|
"z-50 w-fit origin-(--radix-tooltip-content-transform-origin)",
|
|
9
9
|
"rounded-md px-3 py-1.5 text-xs font-medium text-balance",
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import {
|
|
2
|
+
chip
|
|
3
|
+
} from "./chunk-JHKTRIIA.mjs";
|
|
4
|
+
|
|
5
|
+
// src/components/standard-chip.ts
|
|
6
|
+
import { tv } from "tailwind-variants";
|
|
7
|
+
var standardChip = tv({
|
|
8
|
+
extend: chip,
|
|
9
|
+
slots: {
|
|
10
|
+
root: [
|
|
11
|
+
"inline-flex",
|
|
12
|
+
"gap-1",
|
|
13
|
+
"items-center",
|
|
14
|
+
"rounded-full",
|
|
15
|
+
"border border-border text-xs font-semibold transition-colors focus:outline-hidden h-fit shrink-0"
|
|
16
|
+
],
|
|
17
|
+
hexagon: [
|
|
18
|
+
"size-2.5 bg-[currentColor] [clip-path:polygon(50%_0%,95%_25%,95%_75%,50%_100%,5%_75%,5%_25%)]"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
variants: {
|
|
22
|
+
standard: {
|
|
23
|
+
"ISO 27001": {
|
|
24
|
+
hexagon: "text-standard-iso27001"
|
|
25
|
+
},
|
|
26
|
+
"ISO/IEC 27001:2017": {
|
|
27
|
+
hexagon: "text-standard-iso27001"
|
|
28
|
+
},
|
|
29
|
+
"ISO 9001": {
|
|
30
|
+
hexagon: "text-standard-iso9001"
|
|
31
|
+
},
|
|
32
|
+
"ISO 14001": {
|
|
33
|
+
hexagon: "text-standard-iso14001"
|
|
34
|
+
},
|
|
35
|
+
"NIS 2": {
|
|
36
|
+
hexagon: "text-standard-nis2"
|
|
37
|
+
},
|
|
38
|
+
"NIST 800-53": {
|
|
39
|
+
hexagon: "text-standard-nist80053"
|
|
40
|
+
},
|
|
41
|
+
"NIST CSF": {
|
|
42
|
+
hexagon: "text-standard-nistcsf"
|
|
43
|
+
},
|
|
44
|
+
"SOC 2": {
|
|
45
|
+
hexagon: "text-standard-soc2"
|
|
46
|
+
},
|
|
47
|
+
"NIST SSDF": {
|
|
48
|
+
hexagon: "text-standard-nistssdf"
|
|
49
|
+
},
|
|
50
|
+
GDPR: {
|
|
51
|
+
hexagon: "text-standard-gdpr"
|
|
52
|
+
},
|
|
53
|
+
"CIS Benchmarks": {
|
|
54
|
+
hexagon: "text-standard-cis"
|
|
55
|
+
},
|
|
56
|
+
CCM: {
|
|
57
|
+
hexagon: "text-standard-ccm"
|
|
58
|
+
},
|
|
59
|
+
HIPAA: { hexagon: "text-standard-hipaa" },
|
|
60
|
+
HIPPA: { hexagon: "text-standard-hipaa" },
|
|
61
|
+
// alias for common misspelling
|
|
62
|
+
SOX: {
|
|
63
|
+
hexagon: "text-standard-sox"
|
|
64
|
+
},
|
|
65
|
+
/* EU & DE add-ons */
|
|
66
|
+
DORA: { hexagon: "text-standard-dora" },
|
|
67
|
+
"Cyber Resilience Act": { hexagon: "text-standard-cra" },
|
|
68
|
+
"EU AI Act": { hexagon: "text-standard-eu-aiact" },
|
|
69
|
+
"eIDAS 2.0": { hexagon: "text-standard-eidas2" },
|
|
70
|
+
"BSI IT-Grundschutz": { hexagon: "text-standard-bsi-itg" },
|
|
71
|
+
"KRITIS / IT-SiG 2.0": { hexagon: "text-standard-kritis" },
|
|
72
|
+
"BSI C5": { hexagon: "text-standard-bsi-c5" },
|
|
73
|
+
/* Industry & extended ISO */
|
|
74
|
+
TISAX: { hexagon: "text-standard-tisax" },
|
|
75
|
+
"PCI DSS": { hexagon: "text-standard-pci-dss" },
|
|
76
|
+
"IEC 62443": { hexagon: "text-standard-iec-62443" },
|
|
77
|
+
"ISO 27701": { hexagon: "text-standard-iso27701" },
|
|
78
|
+
"ISO 27017": { hexagon: "text-standard-iso27017" },
|
|
79
|
+
"ISO 27018": { hexagon: "text-standard-iso27018" },
|
|
80
|
+
"ISO 22301": { hexagon: "text-standard-iso22301" },
|
|
81
|
+
"ISO 20000-1": { hexagon: "text-standard-iso20000-1" },
|
|
82
|
+
CUSTOM: {
|
|
83
|
+
hexagon: "text-standard-custom"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
size: {
|
|
87
|
+
sm: {},
|
|
88
|
+
md: {},
|
|
89
|
+
lg: {}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
defaultVariants: {
|
|
93
|
+
standard: "CUSTOM"
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
export {
|
|
98
|
+
standardChip
|
|
99
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// src/components/framework-row.ts
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
var frameworkRow = tv({
|
|
4
|
+
slots: {
|
|
5
|
+
root: "flex w-full items-start gap-3 py-2 first:pt-0 last:pb-0 border-b border-dotted last:border-0",
|
|
6
|
+
standardContainer: "shrink-0",
|
|
7
|
+
refCodeContainer: "flex flex-wrap gap-2",
|
|
8
|
+
toggleButton: [
|
|
9
|
+
"px-2 py-0.5 text-xs rounded-full border",
|
|
10
|
+
"bg-background text-muted-foreground hover:bg-muted/40"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export {
|
|
16
|
+
frameworkRow
|
|
17
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// src/utils/variants.ts
|
|
2
2
|
var solid = {
|
|
3
|
-
default: "bg-
|
|
3
|
+
default: "bg-default-100 text-foreground dark:bg-default-900",
|
|
4
4
|
primary: "bg-primary text-primary-foreground",
|
|
5
5
|
secondary: "bg-secondary text-secondary-foreground",
|
|
6
6
|
destructive: "bg-destructive text-destructive-foreground",
|
|
@@ -40,7 +40,7 @@ var translateCenterClasses = [
|
|
|
40
40
|
|
|
41
41
|
// src/utils/variants.ts
|
|
42
42
|
var solid = {
|
|
43
|
-
default: "bg-
|
|
43
|
+
default: "bg-default-100 text-foreground dark:bg-default-900",
|
|
44
44
|
primary: "bg-primary text-primary-foreground",
|
|
45
45
|
secondary: "bg-secondary text-secondary-foreground",
|
|
46
46
|
destructive: "bg-destructive text-destructive-foreground",
|
|
@@ -33,7 +33,7 @@ var focusVisibleClasses = [
|
|
|
33
33
|
|
|
34
34
|
// src/utils/variants.ts
|
|
35
35
|
var solid = {
|
|
36
|
-
default: "bg-
|
|
36
|
+
default: "bg-default-100 text-foreground dark:bg-default-900",
|
|
37
37
|
primary: "bg-primary text-primary-foreground",
|
|
38
38
|
secondary: "bg-secondary text-secondary-foreground",
|
|
39
39
|
destructive: "bg-destructive text-destructive-foreground",
|
package/dist/components/chip.js
CHANGED
|
@@ -27,7 +27,7 @@ var import_tailwind_variants = require("tailwind-variants");
|
|
|
27
27
|
|
|
28
28
|
// src/utils/variants.ts
|
|
29
29
|
var solid = {
|
|
30
|
-
default: "bg-
|
|
30
|
+
default: "bg-default-100 text-foreground dark:bg-default-900",
|
|
31
31
|
primary: "bg-primary text-primary-foreground",
|
|
32
32
|
secondary: "bg-secondary text-secondary-foreground",
|
|
33
33
|
destructive: "bg-destructive text-destructive-foreground",
|
package/dist/components/chip.mjs
CHANGED
package/dist/components/code.js
CHANGED
|
@@ -27,7 +27,7 @@ var import_tailwind_variants = require("tailwind-variants");
|
|
|
27
27
|
|
|
28
28
|
// src/utils/variants.ts
|
|
29
29
|
var solid = {
|
|
30
|
-
default: "bg-
|
|
30
|
+
default: "bg-default-100 text-foreground dark:bg-default-900",
|
|
31
31
|
primary: "bg-primary text-primary-foreground",
|
|
32
32
|
secondary: "bg-secondary text-secondary-foreground",
|
|
33
33
|
destructive: "bg-destructive text-destructive-foreground",
|
package/dist/components/code.mjs
CHANGED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as tailwind_variants from 'tailwind-variants';
|
|
2
|
+
import * as tailwind_merge from 'tailwind-merge';
|
|
3
|
+
|
|
4
|
+
declare const frameworkRow: tailwind_variants.TVReturnType<{
|
|
5
|
+
[key: string]: {
|
|
6
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
7
|
+
root?: tailwind_merge.ClassNameValue;
|
|
8
|
+
standardContainer?: tailwind_merge.ClassNameValue;
|
|
9
|
+
refCodeContainer?: tailwind_merge.ClassNameValue;
|
|
10
|
+
toggleButton?: tailwind_merge.ClassNameValue;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
} | {
|
|
14
|
+
[x: string]: {
|
|
15
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
16
|
+
root?: tailwind_merge.ClassNameValue;
|
|
17
|
+
standardContainer?: tailwind_merge.ClassNameValue;
|
|
18
|
+
refCodeContainer?: tailwind_merge.ClassNameValue;
|
|
19
|
+
toggleButton?: tailwind_merge.ClassNameValue;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
} | {}, {
|
|
23
|
+
root: string;
|
|
24
|
+
standardContainer: string;
|
|
25
|
+
refCodeContainer: string;
|
|
26
|
+
toggleButton: string[];
|
|
27
|
+
}, undefined, {
|
|
28
|
+
[key: string]: {
|
|
29
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
30
|
+
root?: tailwind_merge.ClassNameValue;
|
|
31
|
+
standardContainer?: tailwind_merge.ClassNameValue;
|
|
32
|
+
refCodeContainer?: tailwind_merge.ClassNameValue;
|
|
33
|
+
toggleButton?: tailwind_merge.ClassNameValue;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
} | {}, {
|
|
37
|
+
root: string;
|
|
38
|
+
standardContainer: string;
|
|
39
|
+
refCodeContainer: string;
|
|
40
|
+
toggleButton: string[];
|
|
41
|
+
}, tailwind_variants.TVReturnType<unknown, {
|
|
42
|
+
root: string;
|
|
43
|
+
standardContainer: string;
|
|
44
|
+
refCodeContainer: string;
|
|
45
|
+
toggleButton: string[];
|
|
46
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
47
|
+
|
|
48
|
+
export { frameworkRow };
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as tailwind_variants from 'tailwind-variants';
|
|
2
|
+
import * as tailwind_merge from 'tailwind-merge';
|
|
3
|
+
|
|
4
|
+
declare const frameworkRow: tailwind_variants.TVReturnType<{
|
|
5
|
+
[key: string]: {
|
|
6
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
7
|
+
root?: tailwind_merge.ClassNameValue;
|
|
8
|
+
standardContainer?: tailwind_merge.ClassNameValue;
|
|
9
|
+
refCodeContainer?: tailwind_merge.ClassNameValue;
|
|
10
|
+
toggleButton?: tailwind_merge.ClassNameValue;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
} | {
|
|
14
|
+
[x: string]: {
|
|
15
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
16
|
+
root?: tailwind_merge.ClassNameValue;
|
|
17
|
+
standardContainer?: tailwind_merge.ClassNameValue;
|
|
18
|
+
refCodeContainer?: tailwind_merge.ClassNameValue;
|
|
19
|
+
toggleButton?: tailwind_merge.ClassNameValue;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
} | {}, {
|
|
23
|
+
root: string;
|
|
24
|
+
standardContainer: string;
|
|
25
|
+
refCodeContainer: string;
|
|
26
|
+
toggleButton: string[];
|
|
27
|
+
}, undefined, {
|
|
28
|
+
[key: string]: {
|
|
29
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
30
|
+
root?: tailwind_merge.ClassNameValue;
|
|
31
|
+
standardContainer?: tailwind_merge.ClassNameValue;
|
|
32
|
+
refCodeContainer?: tailwind_merge.ClassNameValue;
|
|
33
|
+
toggleButton?: tailwind_merge.ClassNameValue;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
} | {}, {
|
|
37
|
+
root: string;
|
|
38
|
+
standardContainer: string;
|
|
39
|
+
refCodeContainer: string;
|
|
40
|
+
toggleButton: string[];
|
|
41
|
+
}, tailwind_variants.TVReturnType<unknown, {
|
|
42
|
+
root: string;
|
|
43
|
+
standardContainer: string;
|
|
44
|
+
refCodeContainer: string;
|
|
45
|
+
toggleButton: string[];
|
|
46
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
47
|
+
|
|
48
|
+
export { frameworkRow };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/components/framework-row.ts
|
|
21
|
+
var framework_row_exports = {};
|
|
22
|
+
__export(framework_row_exports, {
|
|
23
|
+
frameworkRow: () => frameworkRow
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(framework_row_exports);
|
|
26
|
+
var import_tailwind_variants = require("tailwind-variants");
|
|
27
|
+
var frameworkRow = (0, import_tailwind_variants.tv)({
|
|
28
|
+
slots: {
|
|
29
|
+
root: "flex w-full items-start gap-3 py-2 first:pt-0 last:pb-0 border-b border-dotted last:border-0",
|
|
30
|
+
standardContainer: "shrink-0",
|
|
31
|
+
refCodeContainer: "flex flex-wrap gap-2",
|
|
32
|
+
toggleButton: [
|
|
33
|
+
"px-2 py-0.5 text-xs rounded-full border",
|
|
34
|
+
"bg-background text-muted-foreground hover:bg-muted/40"
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
39
|
+
0 && (module.exports = {
|
|
40
|
+
frameworkRow
|
|
41
|
+
});
|
|
@@ -15,6 +15,7 @@ export { DataTableVariants, dataTable } from './data-table.mjs';
|
|
|
15
15
|
export { DialogSlots, DialogVariantProps, dialog } from './dialog.mjs';
|
|
16
16
|
export { DrawerVariantProps, drawer } from './drawer.mjs';
|
|
17
17
|
export { DropdownMenuVariantProps, dropdownMenu } from './dropdown-menu.mjs';
|
|
18
|
+
export { frameworkRow } from './framework-row.mjs';
|
|
18
19
|
export { HeadingVariantProps, heading } from './heading.mjs';
|
|
19
20
|
export { HoverCardSlots, HoverCardVariantProps, hoverCard } from './hover-card.mjs';
|
|
20
21
|
export { InputVariantProps, input, passwordInput } from './input.mjs';
|
|
@@ -22,6 +23,7 @@ export { PageHeaderVariantProps, pageHeader } from './page-header.mjs';
|
|
|
22
23
|
export { PageLayoutSlots, PageLayoutVariantProps, pageLayout } from './page-layout.mjs';
|
|
23
24
|
export { PopoverVariants, popover } from './popover.mjs';
|
|
24
25
|
export { PreviewCardSlots, PreviewCardVariantProps, previewCard } from './preview-card.mjs';
|
|
26
|
+
export { RelatedControlChipVariantsProps, relatedControlChip } from './related-control-chip.mjs';
|
|
25
27
|
export { ResizableVariantProps, resizable } from './resizable.mjs';
|
|
26
28
|
export { RiskBadgeVariantProps, riskBadge } from './risk-badge.mjs';
|
|
27
29
|
export { RiskIndicatorVariantProps, riskIndicator } from './risk-indicator.mjs';
|
|
@@ -32,6 +34,7 @@ export { skeleton } from './skeleton.mjs';
|
|
|
32
34
|
export { SkeletonAvatarVariantProps, skeletonAvatar } from './skeleton-avatar.mjs';
|
|
33
35
|
export { SpinnerVariants, spinner } from './spinner.mjs';
|
|
34
36
|
export { SplitPageLayoutVariantProps, splitPageLayout } from './split-page-layout.mjs';
|
|
37
|
+
export { StandardChipVariants, standardChip } from './standard-chip.mjs';
|
|
35
38
|
export { TabNavSlots, TabNavVariantProps, tabNav } from './tab-nav.mjs';
|
|
36
39
|
export { TableSlots, TableVariantProps, table } from './table.mjs';
|
|
37
40
|
export { TabsVariantProps, tabs } from './tabs.mjs';
|
|
@@ -15,6 +15,7 @@ export { DataTableVariants, dataTable } from './data-table.js';
|
|
|
15
15
|
export { DialogSlots, DialogVariantProps, dialog } from './dialog.js';
|
|
16
16
|
export { DrawerVariantProps, drawer } from './drawer.js';
|
|
17
17
|
export { DropdownMenuVariantProps, dropdownMenu } from './dropdown-menu.js';
|
|
18
|
+
export { frameworkRow } from './framework-row.js';
|
|
18
19
|
export { HeadingVariantProps, heading } from './heading.js';
|
|
19
20
|
export { HoverCardSlots, HoverCardVariantProps, hoverCard } from './hover-card.js';
|
|
20
21
|
export { InputVariantProps, input, passwordInput } from './input.js';
|
|
@@ -22,6 +23,7 @@ export { PageHeaderVariantProps, pageHeader } from './page-header.js';
|
|
|
22
23
|
export { PageLayoutSlots, PageLayoutVariantProps, pageLayout } from './page-layout.js';
|
|
23
24
|
export { PopoverVariants, popover } from './popover.js';
|
|
24
25
|
export { PreviewCardSlots, PreviewCardVariantProps, previewCard } from './preview-card.js';
|
|
26
|
+
export { RelatedControlChipVariantsProps, relatedControlChip } from './related-control-chip.js';
|
|
25
27
|
export { ResizableVariantProps, resizable } from './resizable.js';
|
|
26
28
|
export { RiskBadgeVariantProps, riskBadge } from './risk-badge.js';
|
|
27
29
|
export { RiskIndicatorVariantProps, riskIndicator } from './risk-indicator.js';
|
|
@@ -32,6 +34,7 @@ export { skeleton } from './skeleton.js';
|
|
|
32
34
|
export { SkeletonAvatarVariantProps, skeletonAvatar } from './skeleton-avatar.js';
|
|
33
35
|
export { SpinnerVariants, spinner } from './spinner.js';
|
|
34
36
|
export { SplitPageLayoutVariantProps, splitPageLayout } from './split-page-layout.js';
|
|
37
|
+
export { StandardChipVariants, standardChip } from './standard-chip.js';
|
|
35
38
|
export { TabNavSlots, TabNavVariantProps, tabNav } from './tab-nav.js';
|
|
36
39
|
export { TableSlots, TableVariantProps, table } from './table.js';
|
|
37
40
|
export { TabsVariantProps, tabs } from './tabs.js';
|