diff --git a/components/lib/inputswitch/BaseInputSwitch.vue b/components/lib/inputswitch/BaseInputSwitch.vue new file mode 100644 index 000000000..ca7ee7e64 --- /dev/null +++ b/components/lib/inputswitch/BaseInputSwitch.vue @@ -0,0 +1,104 @@ + diff --git a/components/lib/inputswitch/InputSwitch.d.ts b/components/lib/inputswitch/InputSwitch.d.ts index bfb6dc5fd..3eb9a44c8 100755 --- a/components/lib/inputswitch/InputSwitch.d.ts +++ b/components/lib/inputswitch/InputSwitch.d.ts @@ -104,6 +104,16 @@ export interface InputSwitchProps { * Establishes a string value that labels the component. */ 'aria-label'?: string | undefined; + /** + * Uses to pass attributes to DOM elements inside the component. + * @type {InputSwitchPassThroughMethodOptions} + */ + pt?: InputSwitchPassThroughMethodOptions; + /** + * When enabled, it removes component related styles in the core. + * @defaultValue false + */ + unstyled?: boolean; } export interface InputSwitchSlots {} diff --git a/components/lib/inputswitch/InputSwitch.vue b/components/lib/inputswitch/InputSwitch.vue index 0741c61ed..a7274deb8 100755 --- a/components/lib/inputswitch/InputSwitch.vue +++ b/components/lib/inputswitch/InputSwitch.vue @@ -1,6 +1,6 @@ - -