@everymatrix/general-registration 1.10.11 → 1.10.13
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/cjs/checkbox-input_11.cjs.entry.js +211 -22
- package/dist/cjs/general-registration.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/general-registration/general-registration.js +7 -6
- package/dist/components/checkbox-input2.js +23 -2
- package/dist/components/date-input2.js +23 -2
- package/dist/components/email-input2.js +23 -2
- package/dist/components/general-input2.js +31 -10
- package/dist/components/general-registration.js +5 -4
- package/dist/components/number-input2.js +23 -2
- package/dist/components/password-input2.js +23 -2
- package/dist/components/radio-input2.js +22 -3
- package/dist/components/select-input2.js +23 -2
- package/dist/components/tel-input2.js +23 -2
- package/dist/components/text-input2.js +23 -2
- package/dist/esm/checkbox-input_11.entry.js +211 -22
- package/dist/esm/general-registration.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/general-registration/general-registration.esm.js +1 -1
- package/dist/general-registration/{p-b5f7ebdd.entry.js → p-c7e0b72f.entry.js} +16 -16
- package/dist/types/components/general-registration/general-registration.d.ts +2 -2
- package/dist/types/components.d.ts +4 -4
- package/package.json +1 -1
|
@@ -8,11 +8,11 @@ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
|
8
8
|
export namespace Components {
|
|
9
9
|
interface GeneralRegistration {
|
|
10
10
|
/**
|
|
11
|
-
* Client custom styling via
|
|
11
|
+
* Client custom styling via inline styles
|
|
12
12
|
*/
|
|
13
13
|
"clientStyling": string;
|
|
14
14
|
/**
|
|
15
|
-
* Client custom styling via url
|
|
15
|
+
* Client custom styling via url
|
|
16
16
|
*/
|
|
17
17
|
"clientStylingUrl": string;
|
|
18
18
|
/**
|
|
@@ -39,11 +39,11 @@ declare global {
|
|
|
39
39
|
declare namespace LocalJSX {
|
|
40
40
|
interface GeneralRegistration {
|
|
41
41
|
/**
|
|
42
|
-
* Client custom styling via
|
|
42
|
+
* Client custom styling via inline styles
|
|
43
43
|
*/
|
|
44
44
|
"clientStyling"?: string;
|
|
45
45
|
/**
|
|
46
|
-
* Client custom styling via url
|
|
46
|
+
* Client custom styling via url
|
|
47
47
|
*/
|
|
48
48
|
"clientStylingUrl"?: string;
|
|
49
49
|
/**
|