@pantoken/components 0.5.1 → 0.6.0
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.d.mts +5 -8
- package/dist/index.mjs +205 -95
- package/dist/utilities.css +1 -1
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
import { ELEVATION_NAMES, FOCUSABLE_SELECTOR, elevationDeclarations, focusOutlineDeclarations, focusOutlineRules } from "@pantoken/utils";
|
|
2
2
|
//#region src/lib/helpers.d.ts
|
|
3
|
-
/**
|
|
4
|
-
* Shared primitives for the component builders: the class-prefix namespace helper, the standalone-sheet
|
|
5
|
-
* `wrap` header, the masked-glyph constants, and the spacing scales. These carry no per-record content —
|
|
6
|
-
* every `src/{components,utilities,rules,declarations}` module imports what it needs from here.
|
|
7
|
-
*
|
|
8
|
-
* @module
|
|
9
|
-
*/
|
|
10
3
|
/** The default class prefix (`instui` → `.instui-button`). */
|
|
11
4
|
declare const DEFAULT_PREFIX = "instui";
|
|
12
5
|
/** Theme keys emitted by `@pantoken/tokens`. */
|
|
@@ -326,6 +319,10 @@ declare const viewCss: Definition["css"];
|
|
|
326
319
|
/** The spacing utilities as a standalone, header-wrapped stylesheet. */
|
|
327
320
|
declare const spacingUtilitiesCss: Definition["css"];
|
|
328
321
|
//#endregion
|
|
322
|
+
//#region src/utilities/gap.d.ts
|
|
323
|
+
/** The gap utility as a standalone, header-wrapped stylesheet. */
|
|
324
|
+
declare const gapCss: Definition["css"];
|
|
325
|
+
//#endregion
|
|
329
326
|
//#region src/utilities/layout.d.ts
|
|
330
327
|
/** The layout utilities as a standalone, header-wrapped stylesheet. */
|
|
331
328
|
declare const layoutUtilitiesCss: Definition["css"];
|
|
@@ -405,4 +402,4 @@ declare function baseCss(): string;
|
|
|
405
402
|
*/
|
|
406
403
|
declare function componentsCss(options?: ComponentOptions): string;
|
|
407
404
|
//#endregion
|
|
408
|
-
export { type ComponentOptions, DEFAULT_PREFIX, ELEVATION_NAMES, FOCUSABLE_SELECTOR, type IconGlyphsOptions, type ProseOptions, alertCss, avatarCss, badgeCss, baseCss, billboardCss, breadcrumbCss, buttonCss, bylineCss, calendarCss, checkboxCss, closeButtonCss, componentsCss, contextViewCss, elevationCss, elevationDeclarations, fileDropCss, focusOutlineCss, focusOutlineDeclarations, focusOutlineRules, formFieldCss, formFieldGroupCss, formFieldMessagesCss, headingCss, iconCss, iconGlyphsCss, imgCss, inPlaceEditCss, inputGroupCss, layoutUtilitiesCss, linkCss, listCss, maskCss, menuCss, metricCss, modalCss, numberInputCss, paginationCss, pillCss, popoverCss, progressCircleCss, progressCss, proseCss, radioCss, radioInputGroupCss, rangeInputCss, ratingCss, responsiveUtilitiesCss, screenReaderContentCss, selectCss, sideNavBarCss, simpleSelectCss, spacingUtilitiesCss, spinnerCss, tableCss, tabsCss, tagCss, textAreaCss, textCss, textInputCss, toggleDetailsCss, toggleGroupCss, tooltipCss, trayCss, treeBrowserCss, truncateCss, viewCss };
|
|
405
|
+
export { type ComponentOptions, DEFAULT_PREFIX, ELEVATION_NAMES, FOCUSABLE_SELECTOR, type IconGlyphsOptions, type ProseOptions, alertCss, avatarCss, badgeCss, baseCss, billboardCss, breadcrumbCss, buttonCss, bylineCss, calendarCss, checkboxCss, closeButtonCss, componentsCss, contextViewCss, elevationCss, elevationDeclarations, fileDropCss, focusOutlineCss, focusOutlineDeclarations, focusOutlineRules, formFieldCss, formFieldGroupCss, formFieldMessagesCss, gapCss, headingCss, iconCss, iconGlyphsCss, imgCss, inPlaceEditCss, inputGroupCss, layoutUtilitiesCss, linkCss, listCss, maskCss, menuCss, metricCss, modalCss, numberInputCss, paginationCss, pillCss, popoverCss, progressCircleCss, progressCss, proseCss, radioCss, radioInputGroupCss, rangeInputCss, ratingCss, responsiveUtilitiesCss, screenReaderContentCss, selectCss, sideNavBarCss, simpleSelectCss, spacingUtilitiesCss, spinnerCss, tableCss, tabsCss, tagCss, textAreaCss, textCss, textInputCss, toggleDetailsCss, toggleGroupCss, tooltipCss, trayCss, treeBrowserCss, truncateCss, viewCss };
|