@adamosuiteservices/ui 2.9.15 → 2.9.16
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/combobox.cjs +1 -1
- package/dist/combobox.js +1 -1
- package/dist/components/ui/icon/icon.d.ts +1 -3
- package/dist/components/ui/icon/icon.stories.d.ts +0 -5
- package/dist/custom-layered-styles.css +1 -1
- package/dist/icon-Cj-g35RJ.js +34 -0
- package/dist/icon-Di0rwXMr.cjs +6 -0
- package/dist/icon.cjs +1 -1
- package/dist/icon.js +1 -1
- package/dist/icons.css +1 -1
- package/dist/styles.css +1 -1
- package/docs/components/ui/accordion-rounded.md +583 -583
- package/docs/components/ui/alert.md +671 -671
- package/docs/components/ui/avatar.md +588 -588
- package/docs/components/ui/badge.md +1024 -1024
- package/docs/components/ui/icon.md +103 -75
- package/package.json +1 -1
- package/dist/icon-DTx6Y_mx.cjs +0 -6
- package/dist/icon-DmU_SEHC.js +0 -36
package/dist/combobox.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const x=require("./jsx-runtime-BB_1_6y_.cjs"),Ce=require("./button-D-qFRXiM.cjs"),Ae=require("./checkbox-CdnZ8VFJ.cjs"),q=require("./index-DoxiiusW.cjs"),ue=require("react"),ie=require("./index-BFyr34mw.cjs"),D=require("./index-CocSS1YK.cjs"),B=require("./index-WIv2ndLu.cjs"),ee=require("./index-_XxjJPRD.cjs"),Ne=require("./createLucideIcon-CAtnV-yz.cjs"),oe=require("./icon-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const x=require("./jsx-runtime-BB_1_6y_.cjs"),Ce=require("./button-D-qFRXiM.cjs"),Ae=require("./checkbox-CdnZ8VFJ.cjs"),q=require("./index-DoxiiusW.cjs"),ue=require("react"),ie=require("./index-BFyr34mw.cjs"),D=require("./index-CocSS1YK.cjs"),B=require("./index-WIv2ndLu.cjs"),ee=require("./index-_XxjJPRD.cjs"),Ne=require("./createLucideIcon-CAtnV-yz.cjs"),oe=require("./icon-Di0rwXMr.cjs"),ce=require("./popover-CYbik-H4.cjs");function Pe(e){const n=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const r in e)if(r!=="default"){const p=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(n,r,p.get?p:{enumerable:!0,get:()=>e[r]})}}return n.default=e,Object.freeze(n)}const a=Pe(ue);/**
|
|
2
2
|
* @license lucide-react v0.546.0 - ISC
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the ISC license.
|
package/dist/combobox.js
CHANGED
|
@@ -9,7 +9,7 @@ import { P as F } from "./index-BMWt1NBG.js";
|
|
|
9
9
|
import { u as _ } from "./index-Cv867SGx.js";
|
|
10
10
|
import { c as ee } from "./index-DLcqcWxM.js";
|
|
11
11
|
import { c as Le } from "./createLucideIcon-B_8CJpcQ.js";
|
|
12
|
-
import { I as oe } from "./icon-
|
|
12
|
+
import { I as oe } from "./icon-Cj-g35RJ.js";
|
|
13
13
|
import { P as Pe, a as De, b as Fe } from "./popover-DAwH8jUh.js";
|
|
14
14
|
/**
|
|
15
15
|
* @license lucide-react v0.546.0 - ISC
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { ComponentProps } from 'react';
|
|
2
|
-
export type IconSize = "18" | "24" | "36" | "48";
|
|
3
2
|
export type IconProps = ComponentProps<"span"> & {
|
|
4
3
|
symbol: string;
|
|
5
|
-
size?: IconSize;
|
|
6
4
|
fill?: 0 | 1;
|
|
7
5
|
weight?: 100 | 200 | 300 | 400 | 500 | 600 | 700;
|
|
8
6
|
grade?: -25 | 0 | 200;
|
|
9
7
|
opticalSize?: 20 | 24 | 40 | 48;
|
|
10
8
|
};
|
|
11
|
-
export declare function Icon({ symbol,
|
|
9
|
+
export declare function Icon({ symbol, fill, weight, grade, opticalSize, className, style, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|