@ceed/ads 0.0.34 → 0.0.35
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/framer/index.js +42 -26
- package/package.json +1 -1
package/framer/index.js
CHANGED
|
@@ -35955,85 +35955,100 @@ var sheetPropertyControls = {
|
|
|
35955
35955
|
}
|
|
35956
35956
|
};
|
|
35957
35957
|
|
|
35958
|
-
// src/components/
|
|
35958
|
+
// src/components/Skeleton/Skeleton.framer.ts
|
|
35959
35959
|
import { ControlType as ControlType18 } from "framer";
|
|
35960
|
+
var skeletonPropertyControls = {
|
|
35961
|
+
target: {
|
|
35962
|
+
title: "Target",
|
|
35963
|
+
type: ControlType18.ComponentInstance
|
|
35964
|
+
},
|
|
35965
|
+
animation: {
|
|
35966
|
+
title: "Animation",
|
|
35967
|
+
type: ControlType18.Enum,
|
|
35968
|
+
options: ["wave", "pulse", false],
|
|
35969
|
+
defaultValue: "pulse"
|
|
35970
|
+
}
|
|
35971
|
+
};
|
|
35972
|
+
|
|
35973
|
+
// src/components/Switch/Switch.framer.ts
|
|
35974
|
+
import { ControlType as ControlType19 } from "framer";
|
|
35960
35975
|
var switchPropertyControls = {
|
|
35961
35976
|
onChange: {
|
|
35962
35977
|
title: "onChange",
|
|
35963
|
-
type:
|
|
35978
|
+
type: ControlType19.EventHandler
|
|
35964
35979
|
},
|
|
35965
35980
|
disabled: {
|
|
35966
35981
|
title: "Disabled",
|
|
35967
|
-
type:
|
|
35982
|
+
type: ControlType19.Boolean,
|
|
35968
35983
|
defaultValue: false
|
|
35969
35984
|
},
|
|
35970
35985
|
color: {
|
|
35971
35986
|
title: "Color",
|
|
35972
|
-
type:
|
|
35987
|
+
type: ControlType19.Enum,
|
|
35973
35988
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35974
35989
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35975
35990
|
},
|
|
35976
35991
|
variant: {
|
|
35977
35992
|
title: "Variant",
|
|
35978
|
-
type:
|
|
35993
|
+
type: ControlType19.Enum,
|
|
35979
35994
|
options: ["solid", "outlined", "soft", "plain"],
|
|
35980
35995
|
defaultValue: void 0
|
|
35981
35996
|
},
|
|
35982
35997
|
size: {
|
|
35983
35998
|
title: "Size",
|
|
35984
|
-
type:
|
|
35999
|
+
type: ControlType19.Enum,
|
|
35985
36000
|
options: ["sm", "md", "lg"],
|
|
35986
36001
|
defaultValue: "md"
|
|
35987
36002
|
}
|
|
35988
36003
|
};
|
|
35989
36004
|
|
|
35990
36005
|
// src/components/Tabs/Tabs.framer.ts
|
|
35991
|
-
import { ControlType as
|
|
36006
|
+
import { ControlType as ControlType20 } from "framer";
|
|
35992
36007
|
var tabsPropertyControls = {
|
|
35993
36008
|
color: {
|
|
35994
36009
|
title: "Color",
|
|
35995
|
-
type:
|
|
36010
|
+
type: ControlType20.Enum,
|
|
35996
36011
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35997
36012
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35998
36013
|
},
|
|
35999
36014
|
size: {
|
|
36000
36015
|
title: "Size",
|
|
36001
|
-
type:
|
|
36016
|
+
type: ControlType20.Enum,
|
|
36002
36017
|
options: ["sm", "md", "lg"],
|
|
36003
36018
|
defaultValue: "md"
|
|
36004
36019
|
},
|
|
36005
36020
|
variant: {
|
|
36006
36021
|
title: "Variant",
|
|
36007
|
-
type:
|
|
36022
|
+
type: ControlType20.Enum,
|
|
36008
36023
|
options: ["outlined", "plain", "solid", "soft"],
|
|
36009
36024
|
defaultValue: "plain"
|
|
36010
36025
|
},
|
|
36011
36026
|
orientation: {
|
|
36012
|
-
type:
|
|
36027
|
+
type: ControlType20.Enum,
|
|
36013
36028
|
options: ["horizontal", "vertical"]
|
|
36014
36029
|
},
|
|
36015
36030
|
disableUnderline: {
|
|
36016
|
-
type:
|
|
36031
|
+
type: ControlType20.Boolean,
|
|
36017
36032
|
defaultValue: false
|
|
36018
36033
|
},
|
|
36019
36034
|
disableIndicator: {
|
|
36020
|
-
type:
|
|
36035
|
+
type: ControlType20.Boolean,
|
|
36021
36036
|
defaultValue: false
|
|
36022
36037
|
},
|
|
36023
36038
|
indicatorInset: {
|
|
36024
|
-
type:
|
|
36039
|
+
type: ControlType20.Boolean,
|
|
36025
36040
|
defaultValue: false
|
|
36026
36041
|
},
|
|
36027
36042
|
tabs: {
|
|
36028
|
-
type:
|
|
36043
|
+
type: ControlType20.Array,
|
|
36029
36044
|
control: {
|
|
36030
|
-
type:
|
|
36045
|
+
type: ControlType20.Object,
|
|
36031
36046
|
controls: {
|
|
36032
36047
|
title: {
|
|
36033
|
-
type:
|
|
36048
|
+
type: ControlType20.String
|
|
36034
36049
|
},
|
|
36035
36050
|
disabled: {
|
|
36036
|
-
type:
|
|
36051
|
+
type: ControlType20.Boolean,
|
|
36037
36052
|
defaultValue: false
|
|
36038
36053
|
}
|
|
36039
36054
|
}
|
|
@@ -36041,15 +36056,15 @@ var tabsPropertyControls = {
|
|
|
36041
36056
|
},
|
|
36042
36057
|
contents: {
|
|
36043
36058
|
title: "Contents",
|
|
36044
|
-
type:
|
|
36059
|
+
type: ControlType20.Array,
|
|
36045
36060
|
control: {
|
|
36046
|
-
type:
|
|
36061
|
+
type: ControlType20.ComponentInstance
|
|
36047
36062
|
}
|
|
36048
36063
|
}
|
|
36049
36064
|
};
|
|
36050
36065
|
|
|
36051
36066
|
// src/components/Typography/Typography.framer.ts
|
|
36052
|
-
import { ControlType as
|
|
36067
|
+
import { ControlType as ControlType21 } from "framer";
|
|
36053
36068
|
var typographyPropertyControls = {
|
|
36054
36069
|
// color: {
|
|
36055
36070
|
// title: "Color",
|
|
@@ -36059,7 +36074,7 @@ var typographyPropertyControls = {
|
|
|
36059
36074
|
// },
|
|
36060
36075
|
level: {
|
|
36061
36076
|
title: "Level",
|
|
36062
|
-
type:
|
|
36077
|
+
type: ControlType21.Enum,
|
|
36063
36078
|
options: [
|
|
36064
36079
|
"h1",
|
|
36065
36080
|
"h2",
|
|
@@ -36078,23 +36093,23 @@ var typographyPropertyControls = {
|
|
|
36078
36093
|
},
|
|
36079
36094
|
textColor: {
|
|
36080
36095
|
title: "Text Color",
|
|
36081
|
-
type:
|
|
36096
|
+
type: ControlType21.Enum,
|
|
36082
36097
|
options: ["text.tertiary", "inherit"],
|
|
36083
36098
|
defaultValue: "inherit"
|
|
36084
36099
|
},
|
|
36085
36100
|
text: {
|
|
36086
36101
|
title: "Text",
|
|
36087
|
-
type:
|
|
36102
|
+
type: ControlType21.String,
|
|
36088
36103
|
defaultValue: "Typography",
|
|
36089
36104
|
displayTextArea: true
|
|
36090
36105
|
},
|
|
36091
36106
|
endDecorator: {
|
|
36092
36107
|
title: "End Decorator",
|
|
36093
|
-
type:
|
|
36108
|
+
type: ControlType21.ComponentInstance
|
|
36094
36109
|
},
|
|
36095
36110
|
startDecorator: {
|
|
36096
36111
|
title: "Start Decorator",
|
|
36097
|
-
type:
|
|
36112
|
+
type: ControlType21.ComponentInstance
|
|
36098
36113
|
}
|
|
36099
36114
|
};
|
|
36100
36115
|
export {
|
|
@@ -36250,6 +36265,7 @@ export {
|
|
|
36250
36265
|
sheetClasses_default as sheetClasses,
|
|
36251
36266
|
sheetPropertyControls,
|
|
36252
36267
|
skeletonClasses_default as skeletonClasses,
|
|
36268
|
+
skeletonPropertyControls,
|
|
36253
36269
|
sliderClasses_default as sliderClasses,
|
|
36254
36270
|
stackClasses_default as stackClasses,
|
|
36255
36271
|
stepButtonClasses_default as stepButtonClasses,
|