@scalar/api-reference 1.55.1 → 1.55.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/browser/standalone.js +217 -217
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/AgentScalar/AgentScalarDrawer.vue.js +1 -1
- package/dist/components/AgentScalar/AgentScalarDrawer.vue.js.map +1 -1
- package/dist/components/AgentScalar/AgentScalarDrawer.vue.script.js +1 -1
- package/dist/components/AgentScalar/AgentScalarDrawer.vue.script.js.map +1 -1
- package/dist/components/ApiReference.vue.d.ts.map +1 -1
- package/dist/components/ApiReference.vue.js +1 -1
- package/dist/components/ApiReference.vue.js.map +1 -1
- package/dist/components/ApiReference.vue.script.js +1 -1
- package/dist/components/ApiReference.vue.script.js.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.js +1 -1
- package/dist/components/Content/Schema/Schema.vue.js.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.script.js.map +1 -1
- package/dist/features/Operation/components/ParameterListItem.vue.d.ts.map +1 -1
- package/dist/features/Operation/components/ParameterListItem.vue.js +1 -1
- package/dist/features/Operation/components/ParameterListItem.vue.js.map +1 -1
- package/dist/features/Operation/components/ParameterListItem.vue.script.js.map +1 -1
- package/dist/features/example-responses/ExampleResponse.vue.js +1 -1
- package/dist/features/example-responses/ExampleResponse.vue.js.map +1 -1
- package/dist/features/example-responses/ExampleResponse.vue.script.js +1 -1
- package/dist/features/example-responses/ExampleResponse.vue.script.js.map +1 -1
- package/dist/standalone.d.ts +1 -1
- package/dist/standalone.d.ts.map +1 -1
- package/dist/style.css +9735 -9276
- package/dist/styles/tailwind.config.css +18 -0
- package/dist/styles/theme.css +20 -0
- package/dist/vue-styles.css +2918 -0
- package/package.json +18 -14
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* API Reference Tailwind Configuration
|
|
3
|
+
*
|
|
4
|
+
* This file can be imported into other projects using Tailwind to
|
|
5
|
+
* generate the appropriate Tailwind utilities for the API Reference.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* Dependency Tailwind Configurations */
|
|
9
|
+
@import "@scalar/components/tailwind.config.css";
|
|
10
|
+
@import "@scalar/sidebar/tailwind.config.css";
|
|
11
|
+
@import "@scalar/api-client/tailwind.config.css";
|
|
12
|
+
@import "@scalar/agent-chat/tailwind.config.css";
|
|
13
|
+
|
|
14
|
+
/* API Reference Tailwind Theme Extensions */
|
|
15
|
+
@import "./theme.css";
|
|
16
|
+
|
|
17
|
+
/* Search for Tailwind classes in the API Reference */
|
|
18
|
+
@source "../";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/* References Tailwind Theme Extensions */
|
|
2
|
+
@theme inline {
|
|
3
|
+
/*
|
|
4
|
+
* References Spacing Variables
|
|
5
|
+
* @see components/ApiReference.vue
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* The header height */
|
|
9
|
+
--spacing-refs-header: var(--refs-header-height);
|
|
10
|
+
/* The offset of visible references content (minus headers) */
|
|
11
|
+
--spacing-refs-vp-offset: var(--refs-viewport-offset);
|
|
12
|
+
/* The calculated height of visible references content (minus headers) */
|
|
13
|
+
--spacing-refs-vp-height: var(--refs-viewport-height);
|
|
14
|
+
/* The width of the sidebar */
|
|
15
|
+
--spacing-refs-w-sidebar: var(--refs-sidebar-width);
|
|
16
|
+
/* The height of the sidebar */
|
|
17
|
+
--spacing-refs-h-sidebar: var(--refs-sidebar-height);
|
|
18
|
+
/* The maximum width of the content column */
|
|
19
|
+
--spacing-refs-content-max-width: var(--refs-content-max-width);
|
|
20
|
+
}
|