@measured/puck-plugin-heading-analyzer 0.15.0-canary.e0448f0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.css CHANGED
@@ -121,6 +121,28 @@
121
121
  font-size: var(--puck-font-size-xs);
122
122
  }
123
123
 
124
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Loader/styles.module.css/#css-module-data */
125
+ @keyframes _loader-animation_nacdm_1 {
126
+ 0% {
127
+ transform: rotate(0deg) scale(1);
128
+ }
129
+ 50% {
130
+ transform: rotate(180deg) scale(0.8);
131
+ }
132
+ 100% {
133
+ transform: rotate(360deg) scale(1);
134
+ }
135
+ }
136
+ ._Loader_nacdm_13 {
137
+ background: transparent;
138
+ border-radius: 100%;
139
+ border: 2px solid currentColor;
140
+ border-bottom-color: transparent;
141
+ display: inline-block;
142
+ animation: _loader-animation_nacdm_1 1s 0s infinite linear;
143
+ animation-fill-mode: both;
144
+ }
145
+
124
146
  /* css-module:/home/runner/work/puck/puck/packages/core/components/OutlineList/styles.module.css/#css-module-data */
125
147
  ._OutlineList_18bgy_1 {
126
148
  color: var(--puck-color-grey-03);
package/dist/index.d.ts CHANGED
@@ -133,7 +133,7 @@ type CustomField<Props extends any = {}> = BaseField & {
133
133
  type: "custom";
134
134
  render: (props: {
135
135
  field: CustomField<Props>;
136
- name?: string;
136
+ name: string;
137
137
  id: string;
138
138
  value: Props;
139
139
  onChange: (value: Props) => void;