@ceed/ads 0.0.15 → 0.0.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.
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ControlType } from 'framer';
|
|
2
|
+
export var avatarPropertyControls = {
|
|
3
|
+
text: {
|
|
4
|
+
title: "Text",
|
|
5
|
+
type: ControlType.String,
|
|
6
|
+
defaultValue: "Tim",
|
|
7
|
+
},
|
|
8
|
+
image: {
|
|
9
|
+
title: "Image",
|
|
10
|
+
type: ControlType.ResponsiveImage,
|
|
11
|
+
},
|
|
12
|
+
color: {
|
|
13
|
+
title: "Color",
|
|
14
|
+
type: ControlType.Enum,
|
|
15
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
16
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
17
|
+
defaultValue: "neutral",
|
|
18
|
+
},
|
|
19
|
+
size: {
|
|
20
|
+
title: "Size",
|
|
21
|
+
type: ControlType.Enum,
|
|
22
|
+
options: ["sm", "md", "lg"],
|
|
23
|
+
defaultValue: "md",
|
|
24
|
+
},
|
|
25
|
+
variant: {
|
|
26
|
+
title: "Variant",
|
|
27
|
+
type: ControlType.Enum,
|
|
28
|
+
options: ["outlined", "plain", "solid", "soft"],
|
|
29
|
+
defaultValue: undefined,
|
|
30
|
+
},
|
|
31
|
+
};
|
package/framer/index.js
CHANGED
|
@@ -32312,6 +32312,39 @@ var Typography3 = (props) => {
|
|
|
32312
32312
|
return /* @__PURE__ */ jsx2(MotionTypography, { ...props });
|
|
32313
32313
|
};
|
|
32314
32314
|
Typography3.displayName = "Typography";
|
|
32315
|
+
|
|
32316
|
+
// src/components/Avatar/Avatar.framer.ts
|
|
32317
|
+
import { ControlType } from "framer";
|
|
32318
|
+
var avatarPropertyControls = {
|
|
32319
|
+
text: {
|
|
32320
|
+
title: "Text",
|
|
32321
|
+
type: ControlType.String,
|
|
32322
|
+
defaultValue: "Tim"
|
|
32323
|
+
},
|
|
32324
|
+
image: {
|
|
32325
|
+
title: "Image",
|
|
32326
|
+
type: ControlType.ResponsiveImage
|
|
32327
|
+
},
|
|
32328
|
+
color: {
|
|
32329
|
+
title: "Color",
|
|
32330
|
+
type: ControlType.Enum,
|
|
32331
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32332
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
32333
|
+
defaultValue: "neutral"
|
|
32334
|
+
},
|
|
32335
|
+
size: {
|
|
32336
|
+
title: "Size",
|
|
32337
|
+
type: ControlType.Enum,
|
|
32338
|
+
options: ["sm", "md", "lg"],
|
|
32339
|
+
defaultValue: "md"
|
|
32340
|
+
},
|
|
32341
|
+
variant: {
|
|
32342
|
+
title: "Variant",
|
|
32343
|
+
type: ControlType.Enum,
|
|
32344
|
+
options: ["outlined", "plain", "solid", "soft"],
|
|
32345
|
+
defaultValue: void 0
|
|
32346
|
+
}
|
|
32347
|
+
};
|
|
32315
32348
|
export {
|
|
32316
32349
|
Accordion_default as Accordion,
|
|
32317
32350
|
AccordionDetails_default as AccordionDetails,
|
|
@@ -32395,6 +32428,7 @@ export {
|
|
|
32395
32428
|
aspectRatioClasses_default as aspectRatioClasses,
|
|
32396
32429
|
avatarClasses_default as avatarClasses,
|
|
32397
32430
|
avatarGroupClasses_default as avatarGroupClasses,
|
|
32431
|
+
avatarPropertyControls,
|
|
32398
32432
|
badgeClasses_default as badgeClasses,
|
|
32399
32433
|
boxClasses_default as boxClasses,
|
|
32400
32434
|
breadcrumbsClasses_default as breadcrumbsClasses,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceed/ads",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "UI tool for Ecube Labs front-end developers",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"@storybook/test": "^7.6.13",
|
|
44
44
|
"@storybook/theming": "^7.6.13",
|
|
45
45
|
"esbuild": "^0.20.1",
|
|
46
|
+
"framer": "^2.4.1",
|
|
46
47
|
"react": "^18.2.0",
|
|
47
48
|
"react-dom": "^18.2.0",
|
|
48
49
|
"storybook": "^7.6.13",
|